/*	==============================
	FILE: style.css
	DESC: main stylesheet 
 *	=========================== */
/*	------------------------------
	ROOT: Base Style
 *	--------------------------- */
* {
	margin: 0; padding: 0;
	box-sizing: border-box;
}

body {
	line-height: 1.6;
	color: #1a1a1a;
	background: #ffffff;
	overflow-x: hidden;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.container {
	padding: 0 24px;
	max-width: 1200px; margin: 0 auto;
}





/*	------------------------------
	HEADEr: Style
 *	--------------------------- */
header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid #e5e5e5;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 64px;
}

.logo {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: none;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 32px;
	align-items: center;
}

.nav-links a {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-links a:hover {
	color: #1a1a1a;
}

.cart-btn {
	background: #1a1a1a;
	color: white;
	padding: 8px 16px;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.2s ease;
}

.cart-btn:hover {
	color: white; background: #333;
}


/*	------------------------------
	SECtion: Hero
 *	--------------------------- */
.hero {
	padding: 120px 0 80px;
	text-align: center;
	background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.hero h1 {
	font-size: clamp(48px, 8vw, 72px);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
	background: linear-gradient(135deg, #1a1a1a 0%, #666 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 20px;
	color: #666;
	margin-bottom: 32px;
	font-weight: 400;
}

.price-display {
	font-size: 64px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 32px 0 8px;
	letter-spacing: -0.02em;
}

.price-note {
	color: #888;
	font-size: 16px;
	margin-bottom: 8px;
}

.price-small {
	color: #aaa;
	font-size: 12px;
	margin-bottom: 40px;
}

.hero-cta {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: #1a1a1a;
	color: white;
}

.btn-primary:hover {
	background: #333;
	transform: translateY(-1px);
}

.btn-secondary {
	background: transparent;
	color: #1a1a1a;
	border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
	border-color: #1a1a1a;
}

/* Product Showcase */
.product-section {
	padding: 80px 0;
	background: #ffffff;
}

.product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.product-visual {
	background: linear-gradient(135deg, #f8f8f8 0%, #e5e5e5 100%);
	border-radius: 16px;
	padding: 60px;
	text-align: center;
	border: 1px solid #e5e5e5;
}

.product-icon {
	width: 120px;
	height: 120px;
	background: #1a1a1a;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-size: 48px;
	color: white;
}

.product-badge {
	display: inline-block;
	background: #1a1a1a;
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-content h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: -0.01em;
}

.product-content p {
	font-size: 18px;
	color: #666;
	margin-bottom: 32px;
	line-height: 1.6;
}

.feature-list {
	list-style: none;
	margin: 32px 0;
}

.feature-list li {
	display: flex;
	align-items: center;
	padding: 8px 0;
	font-size: 16px;
	color: #333;
}

.feature-list li::before {
	content: '✓';
	background: #1a1a1a;
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	font-size: 12px;
	font-weight: bold;
}

/* What's Included */
.included-section {
	padding: 80px 0;
	background: #fafafa;
}

.section-header {
	text-align: center;
	margin-bottom: 64px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.section-subtitle {
	font-size: 18px;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.included-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
}

.included-card {
	background: white;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	padding: 32px;
	transition: all 0.2s ease;
}

.included-card:hover {
	border-color: #1a1a1a;
	transform: translateY(-2px);
}

.card-icon {
	width: 48px;
	height: 48px;
	background: #f8f8f8;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 24px;
}

.card-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
}

.card-description {
	color: #666;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 16px;
}

.value-badge {
	display: inline-block;
	background: #f8f8f8;
	color: #333;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
}

/* Testimonials */
.testimonials {
	padding: 80px 0;
	background: white;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.testimonial {
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	padding: 32px;
	background: white;
}

.stars {
	color: #1a1a1a;
	font-size: 16px;
	margin-bottom: 16px;
}

.testimonial-text {
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.6;
}

.testimonial-author {
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 4px;
}

.testimonial-role {
	color: #666;
	font-size: 14px;
}

/* Pricing */
.pricing-section {
	padding: 80px 0;
	background: #fafafa;
	text-align: center;
}

.pricing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background: white;
	border: 2px solid #e5e5e5;
	border-radius: 16px;
	padding: 48px;
	position: relative;
	transition: all 0.3s ease;
}

.pricing-card:hover {
	border-color: #1a1a1a;
	transform: translateY(-4px);
}

.pricing-card.featured {
	border-color: #1a1a1a;
	transform: scale(1.02);
}

.popular-tag {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #1a1a1a;
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pricing-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
}

.pricing-price {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}

.pricing-subtitle {
	color: #666;
	margin-bottom: 32px;
}

.pricing-annual-note {
	color: #aaa;
	font-size: 12px;
	margin-top: -16px;
	margin-bottom: 32px;
}

.pricing-features {
	list-style: none;
	text-align: left;
	margin: 32px 0;
}

.pricing-features li {
	display: flex;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 16px;
}

.pricing-features li::before {
	content: '✓';
	background: #1a1a1a;
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	font-size: 12px;
	font-weight: bold;
}

.pricing-cta {
	margin-top: 32px;
}

.security-note {
	margin-top: 16px;
	font-size: 14px;
	color: #888;
}

/* FAQ */
.faq-section {
	padding: 80px 0;
	background: white;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	margin-bottom: 16px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: 20px;
	background: white;
	border: none;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	color: #1a1a1a;
	transition: background 0.2s ease;
}

.faq-question:hover {
	background: #fafafa;
}

.faq-answer {
	padding: 0 20px 20px;
	color: #666;
	line-height: 1.6;
	display: none;
}

/* Footer */
footer {
	background: #1a1a1a;
	color: white;
	padding: 64px 0 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 48px;
	margin-bottom: 32px;
}

.footer-section h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
	display: block;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	text-align: center;
	padding-top: 32px;
	border-top: 1px solid #333;
	color: #888;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}

	.nav-links {
		display: none;
	}

	.hero h1 {
		font-size: 48px;
	}

	.price-display {
		font-size: 48px;
	}

	.product-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 300px;
	}

	.included-grid {
		grid-template-columns: 1fr;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.pricing-card.featured {
		transform: none;
	}
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeIn 0.6s ease-out;
}

/* Loading states */
.btn:active {
	transform: scale(0.98);
}
