:root {
	--primary: #6366f1;
	--primary-dark: #4f46e5;
	--secondary: #f59e0b;
	--dark: #1e1b4b;
	--light: #f8fafc;
	--gray: #64748b;
	--white: #ffffff;
	--gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
	--shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
	--shadow-lg: 0 25px 50px rgba(99, 102, 241, 0.2);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	background: var(--light);
	color: var(--dark);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--light);
}

::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 4px;
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(99, 102, 241, 0.1);
	transition: all 0.3s ease;
}

.navbar.scrolled {
	box-shadow: var(--shadow);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo i {
	-webkit-text-fill-color: var(--primary);
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s;
	position: relative;
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient);
	transition: width 0.3s;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links a:hover {
	color: var(--primary);
}

.nav-cta {
	background: var(--gradient);
	color: white;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	border: none;
	cursor: pointer;
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--dark);
	cursor: pointer;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 2rem 4rem;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f5f3ff 100%);
}

.hero::before {
	content: "";
	position: absolute;
	top: -10%;
	right: -5%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(99, 102, 241, 0.15) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.hero::after {
	content: "";
	position: absolute;
	bottom: -10%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(217, 70, 239, 0.1) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: white;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	color: var(--primary);
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
	margin-bottom: 1.5rem;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: var(--dark);
}

.hero h1 span {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.1rem;
	color: var(--gray);
	margin-bottom: 2rem;
	max-width: 500px;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: var(--gradient);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

.btn-secondary {
	background: white;
	color: var(--dark);
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 2px solid #e2e8f0;
	transition: all 0.3s;
	cursor: pointer;
	font-size: 1rem;
}

.btn-secondary:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-3px);
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-item h3 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary);
}

.stat-item p {
	font-size: 0.9rem;
	color: var(--gray);
	margin: 0;
}

.hero-image {
	position: relative;
}

.hero-mockup {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	position: relative;
}

.phone-frame {
	background: var(--dark);
	border-radius: 40px;
	padding: 12px;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.phone-screen {
	background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
	border-radius: 30px;
	padding: 2rem;
	min-height: 500px;
	position: relative;
	overflow: hidden;
}

.phone-screen::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mockup-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
	animation: slideUp 0.8s ease forwards;
	opacity: 0;
}

.mockup-card:nth-child(1) {
	animation-delay: 0.2s;
}

.mockup-card:nth-child(2) {
	animation-delay: 0.4s;
}

.mockup-card:nth-child(3) {
	animation-delay: 0.6s;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mockup-header {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
}

.mockup-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
}

.mockup-title {
	font-weight: 600;
	color: var(--dark);
	font-size: 0.9rem;
}

.mockup-subtitle {
	font-size: 0.75rem;
	color: var(--gray);
}

.mockup-content {
	background: linear-gradient(135deg, #e0e7ff 0%, #f5f3ff 100%);
	border-radius: 12px;
	padding: 1rem;
	text-align: center;
}

.mockup-content h4 {
	color: var(--primary);
	font-size: 0.9rem;
	margin-bottom: 0.3rem;
}

.mockup-content p {
	font-size: 0.75rem;
	color: var(--gray);
	margin: 0;
}

/* Features Section */
.features {
	padding: 6rem 2rem;
	background: white;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-tag {
	display: inline-block;
	background: rgba(99, 102, 241, 0.1);
	color: var(--primary);
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--dark);
}

.section-header p {
	color: var(--gray);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: var(--light);
	border-radius: 24px;
	padding: 2.5rem;
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
	border: 1px solid transparent;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient);
	transform: scaleX(0);
	transition: transform 0.4s;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(99, 102, 241, 0.1);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
	color: var(--dark);
}

.feature-card p {
	color: var(--gray);
	font-size: 0.95rem;
	line-height: 1.7;
}

/* Products Section */
.products {
	padding: 6rem 2rem;
	background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
}

.products-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 0.8rem 2rem;
	border-radius: 50px;
	border: 2px solid transparent;
	background: white;
	color: var(--gray);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	font-family: "Poppins", sans-serif;
	font-size: 0.95rem;
}

.tab-btn.active {
	background: var(--gradient);
	color: white;
	border-color: transparent;
	box-shadow: var(--shadow);
}

.tab-btn:hover:not(.active) {
	border-color: var(--primary);
	color: var(--primary);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.product-card {
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.4s;
	position: relative;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.product-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--secondary);
	color: white;
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	z-index: 2;
}

.product-badge.best {
	background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.product-image {
	height: 220px;
	background: linear-gradient(135deg, #e0e7ff 0%, #f5f3ff 50%, #fce7f3 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.product-image i {
	font-size: 4rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: transform 0.4s;
}

.product-card:hover .product-image i {
	transform: scale(1.2);
}

.product-info {
	padding: 1.5rem 2rem 2rem;
}

.product-category {
	font-size: 0.8rem;
	color: var(--primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
}

.product-info h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--dark);
}

.product-info p {
	color: var(--gray);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-price {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--primary);
}

.product-price span {
	font-size: 0.85rem;
	color: var(--gray);
	font-weight: 400;
}

.btn-order {
	background: var(--light);
	color: var(--primary);
	padding: 0.6rem 1.2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.85rem;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}

.btn-order:hover {
	background: var(--gradient);
	color: white;
}

/* How It Works */
.how-it-works {
	padding: 6rem 2rem;
	background: white;
}

.steps-container {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.step-card {
	flex: 1;
	min-width: 250px;
	max-width: 300px;
	text-align: center;
	padding: 2rem;
	position: relative;
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--gradient);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 auto 1.5rem;
	position: relative;
	z-index: 2;
	box-shadow: var(--shadow);
}

.step-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
	color: var(--dark);
}

.step-card p {
	color: var(--gray);
	font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.testimonials::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(99, 102, 241, 0.2) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.testimonials .section-header h2,
.testimonials .section-header p {
	color: white;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s;
}

.testimonial-card:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-5px);
}

.testimonial-stars {
	color: var(--secondary);
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.testimonial-text {
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
}

.testimonial-name {
	font-weight: 600;
}

.testimonial-event {
	font-size: 0.85rem;
	opacity: 0.7;
}

/* Pricing */
.pricing {
	padding: 6rem 2rem;
	background: var(--light);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background: white;
	border-radius: 24px;
	padding: 2.5rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
}

.pricing-card.featured {
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
	border: 2px solid var(--primary);
}

.pricing-card.featured::before {
	content: "PALING LARIS";
	position: absolute;
	top: 0;
	right: 0;
	background: var(--gradient);
	color: white;
	padding: 0.4rem 1.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	border-bottom-left-radius: 16px;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.pricing-name {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--dark);
}

.pricing-desc {
	color: var(--gray);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.pricing-price {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.3rem;
}

.pricing-price span {
	font-size: 1rem;
	color: var(--gray);
	font-weight: 400;
}

.pricing-period {
	color: var(--gray);
	font-size: 0.9rem;
	margin-bottom: 2rem;
}

.pricing-features {
	list-style: none;
	text-align: left;
	margin-bottom: 2rem;
}

.pricing-features li {
	padding: 0.7rem 0;
	border-bottom: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 0.9rem;
}

.pricing-features li i {
	color: #10b981;
	font-size: 0.9rem;
}

.pricing-features li.unavailable {
	color: var(--gray);
	opacity: 0.5;
}

.pricing-features li.unavailable i {
	color: #ef4444;
}

.btn-pricing {
	width: 100%;
	padding: 1rem;
	border-radius: 50px;
	border: 2px solid var(--primary);
	background: transparent;
	color: var(--primary);
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s;
	font-family: "Poppins", sans-serif;
}

.btn-pricing:hover {
	background: var(--gradient);
	color: white;
	border-color: transparent;
}

.pricing-card.featured .btn-pricing {
	background: var(--gradient);
	color: white;
	border-color: transparent;
}

.pricing-card.featured .btn-pricing:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

/* CTA Section */
.cta {
	padding: 6rem 2rem;
	background: var(--gradient);
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.cta-container {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.cta p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 2rem;
}

.btn-cta {
	background: white;
	color: var(--primary);
	padding: 1rem 3rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	display: inline-block;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}

.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
	background: var(--dark);
	color: white;
	padding: 4rem 2rem 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-brand .logo {
	margin-bottom: 1rem;
	-webkit-text-fill-color: white;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s;
}

.social-links a:hover {
	background: var(--primary);
	transform: translateY(-3px);
}

.footer-column h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: white;
}

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 0.8rem;
}

.footer-column a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.footer-column a:hover {
	color: white;
}

.footer-bottom {
	max-width: 1200px;
	margin: 3rem auto 0;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		margin: 0 auto 2rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-image {
		order: -1;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 2rem;
		gap: 1.5rem;
		box-shadow: var(--shadow);
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.section-header h2 {
		font-size: 1.8rem;
	}

	.pricing-card.featured {
		transform: none;
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px);
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cta h2 {
		font-size: 1.8rem;
	}
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== HALAMAN PESAN ===== */
.page-header {
	padding: 8rem 2rem 4rem;
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	color: white;
	text-align: center;
}
.page-header h1 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.products-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}
.tab-btn {
	padding: 0.8rem 2rem;
	border-radius: 50px;
	border: 2px solid transparent;
	background: white;
	color: #64748b;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	font-family: "Poppins", sans-serif;
	font-size: 0.95rem;
}
.tab-btn.active {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: white;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.tab-btn:hover:not(.active) {
	border-color: #6366f1;
	color: #6366f1;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.product-card {
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.4s;
	position: relative;
}
.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
}
.product-card.hidden {
	display: none !important;
}

/* ... (sisanya ada di file download) ... */
