/* Base styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
	font-family: 'Prompt', sans-serif;
	color: #2D3748;
	background-color: #ffffff;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 600; }

/* Utilities */
.container {
	max-width: 1152px;
	margin: 0 auto;
	padding: 0 1rem;
}
.text-center { text-align: center; }
.text-brand-pink { color: #FF8A98; }
.text-brand-blue { color: #8ECAE6; }
.text-brand-purple { color: #D6A2E8; }
.text-brand-green { color: #6AD49B; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; }
.text-white { color: #ffffff; }

.bg-brand-pinkLight { background-color: #FFF5F6; }
.bg-brand-blueLight { background-color: #F0F8FF; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-nav {
	background-color: #FF8A98;
	color: #ffffff;
	padding: 0.625rem 1.5rem;
	font-size: 1rem;
}
.btn-nav:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px -6px rgba(255, 138, 152, 0.45);
}
.btn-hero {
	background-color: #00B900;
	color: #ffffff;
	padding: 1.25rem 2.5rem;
	font-size: 1.25rem;
	font-weight: 600;
	border-radius: 1rem;
	box-shadow: 0 10px 15px -3px rgba(187, 247, 208, 1);
	width: 100%;
}
.btn-hero:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px -6px rgba(0, 185, 0, 0.45);
}
.btn-link {
	color: #4b5563;
	font-weight: 600;
	font-size: 1.125rem;
	padding: 0.75rem 1.5rem;
}
.btn-link:hover { color: #FF8A98; }
.btn-icon {
	width: 1.5rem;
	height: 1.5rem;
	fill: currentColor;
	margin-right: 0.5rem;
}

/* Header */
.header {
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	position: fixed;
	width: 100%;
	z-index: 50;
	top: 0;
	border-bottom: 1px solid #f3f4f6;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 5rem;
}
.logo {
	font-size: 1.875rem;
	font-weight: 600;
	color: #8ECAE6;
	letter-spacing: -0.025em;
	cursor: pointer;
}

/* Hero Section */
.hero {
	padding-top: 8rem;
	padding-bottom: 6rem;
	background: linear-gradient(to bottom right, #ffffff, #F0F8FF, #FFF5F6);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.hero-bg-blob-1 {
	position: absolute; top: 5rem; right: 2.5rem; width: 18rem; height: 18rem;
	background-color: rgba(255, 138, 152, 0.1); border-radius: 9999px; filter: blur(3rem); z-index: 0;
}
.hero-bg-blob-2 {
	position: absolute; bottom: 2.5rem; left: 2.5rem; width: 24rem; height: 24rem;
	background-color: rgba(142, 202, 230, 0.1); border-radius: 9999px; filter: blur(3rem); z-index: 0;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 10;
}
.hero-text { text-align: center; }
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: #FFF5F6;
	border: 1px solid rgba(255, 138, 152, 0.3);
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.025em;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	margin-bottom: 2rem;
	color: #FF8A98;
}
.hero-badge svg { width: 1rem; height: 1rem; fill: currentColor; }
.hero h1 {
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: -0.025em;
	color: #111827;
	margin-bottom: 2rem;
	font-weight: 600;
}
.hero h1 .font-normal { font-weight: 400; font-size: 1.875rem; color: #6b7280; }
.hero h1 .gradient-text {
	display: block;
	background: linear-gradient(to right, #FF8A98, #D6A2E8);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-top: 0.5rem;
}
.hero p {
	font-size: 1.125rem;
	color: #4b5563;
	max-width: 42rem;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
}
.hero-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
}

.hero-img-wrapper { display: flex; justify-content: center; position: relative; }
.animate-float { animation: float 4s ease-in-out infinite; width: 100%; max-width: 28rem; filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15)); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Features Section */
.features {
	padding: 6rem 0;
	background-color: #ffffff;
	border-top: 1px solid #f9fafb;
}
.section-header { text-align: center; margin-bottom: 5rem; }
.section-tag {
	color: #FF8A98;
	font-weight: 600;
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.section-header h2 {
	font-size: 1.875rem;
	font-weight: 600;
	color: #111827;
	margin-top: 0.75rem;
}
.section-header p {
	color: #6b7280;
	margin-top: 1rem;
	font-size: 1.125rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}
.divider {
	width: 6rem;
	height: 0.25rem;
	background-color: #FF8A98;
	margin: 1.5rem auto 0;
	border-radius: 9999px;
}
.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
.feature-card {
	background-color: #ffffff;
	border-radius: 2rem;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease;
	box-shadow: 0 10px 35px rgba(0,0,0,0.03);
	border: 1px solid rgba(243, 244, 246, 0.5);
}
.feature-card:hover { transform: translateY(-0.5rem); }
.feature-icon {
	width: 5rem;
	height: 5rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}
.feature-icon svg { width: 2rem; height: 2rem; fill: currentColor; }
.feature-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: #030712; }
.feature-card p { color: #6b7280; font-size: 0.875rem; line-height: 1.625; }

/* Pricing Section */
.pricing {
	padding: 6rem 0;
	background: linear-gradient(to bottom, #ffffff, #f9fafb);
	position: relative;
	overflow: hidden;
}
.pricing-bg-blob-1 {
	position: absolute; top: 10rem; left: -5rem; width: 20rem; height: 20rem;
	background-color: rgba(255, 224, 102, 0.1); border-radius: 9999px; filter: blur(3rem);
}
.pricing-bg-blob-2 {
	position: absolute; bottom: 2.5rem; right: 0; width: 24rem; height: 24rem;
	background-color: rgba(142, 202, 230, 0.1); border-radius: 9999px; filter: blur(3rem);
}
.pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 56rem;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.pricing-card-wrapper {
	position: relative;
	border-radius: 2.5rem;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}
.pricing-card-wrapper:hover { transform: scale(1.02); }
.gradient-border-pink {
	background: #fff;
	background-clip: padding-box;
	border: 4px solid transparent;
}
.gradient-border-pink::before {
	content: '';
	position: absolute;
	top: -4px; right: -4px; bottom: -4px; left: -4px;
	z-index: -1;
	background: linear-gradient(135deg, #FF8A98, #D6A2E8, #8ECAE6);
	border-radius: 2.6rem;
}
.pricing-card {
	background-color: #ffffff;
	border-radius: 2.3rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.pricing-card-shadow { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); border: 1px solid #f3f4f6; }

.recommended-badge {
	position: absolute;
	top: -1rem; left: 50%; transform: translateX(-50%);
	background: linear-gradient(to right, #FF8A98, #D6A2E8);
	color: #ffffff; font-weight: 600; padding: 0.5rem 1.5rem; border-radius: 9999px;
	font-size: 0.875rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	text-transform: uppercase; letter-spacing: 0.025em; white-space: nowrap;
}
.pricing-tag {
	display: inline-block; padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.75rem;
	font-weight: 600; text-transform: uppercase; letter-spacing: 0.025em; margin-bottom: 1rem; margin-top: 1rem;
}
.pricing-tag.main { background-color: rgba(255, 138, 152, 0.2); color: #FF8A98; }
.pricing-tag.bonus { background-color: rgba(142, 202, 230, 0.2); color: #8ECAE6; }

.pricing-card h3 { font-size: 1.875rem; font-weight: 600; color: #111827; margin-bottom: 0.5rem; }
.pricing-card > p { color: #6b7280; font-size: 0.875rem; margin-bottom: 1.5rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f3f4f6; margin-bottom: 2rem; }
.pricing-price .number { font-size: 3rem; font-weight: 600; }

.pricing-highlight { border-radius: 1rem; padding: 1.25rem; margin-bottom: 2rem; }
.pricing-highlight.main { background-color: rgba(255, 245, 246, 0.85); border: 1px solid rgba(255, 138, 152, 0.2); }
.pricing-highlight.bonus { background-color: #F0F8FF; border: 1px solid rgba(142, 202, 230, 0.2); }

.pricing-highlight h4 { font-weight: 600; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.5rem; }
.pricing-highlight.main h4 { color: #FF8A98; }
.pricing-highlight.bonus h4 { color: #8ECAE6; }
.pricing-highlight h4 svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.pricing-highlight p { color: #4b5563; font-size: 0.875rem; line-height: 1.5; }
.pricing-highlight a { text-decoration: underline; font-weight: 600; }
.pricing-highlight a:hover { color: #2563eb; }

.pricing-list { margin-bottom: 2.5rem; flex-grow: 1; }
.pricing-list li { display: flex; align-items: center; gap: 1rem; color: #374151; margin-bottom: 1rem; font-size: 0.875rem; }
.pricing-list .icon { width: 1.5rem; height: 1.5rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pricing-list.main .icon { background-color: #FFF5F6; color: #FF8A98; }
.pricing-list.bonus .icon { background-color: #F0F8FF; color: #8ECAE6; }
.pricing-list .icon svg { width: 0.875rem; height: 0.875rem; fill: currentColor; }

.btn-pricing-primary {
	display: block; width: 100%; padding: 1rem; background: linear-gradient(to right, #FF8A98, #D6A2E8);
	color: #ffffff; text-align: center; border-radius: 1rem; font-weight: 600; font-size: 1.125rem;
	transition: opacity 0.3s ease; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-pricing-primary:hover { opacity: 0.9; }
.btn-pricing-dark {
	display: flex; width: 100%; padding: 1rem; background-color: #111827; color: #ffffff;
	justify-content: center; align-items: center; gap: 0.5rem; border-radius: 1rem; font-weight: 600; font-size: 1.125rem;
	transition: background-color 0.3s ease; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-pricing-dark:hover { background-color: #1f2937; }

/* Footer */
.footer {
	background-color: #F0F8FF; padding-top: 5rem; padding-bottom: 2.5rem; color: #111827; position: relative; overflow: hidden;
}
.footer-bg-1 {
	position: absolute; top: -12rem; left: -12rem; width: 24rem; height: 24rem;
	background-color: rgba(142, 202, 230, 0.05); border-radius: 9999px; filter: blur(3rem);
}
.footer-bg-2 {
	position: absolute; bottom: -12rem; right: -12rem; width: 24rem; height: 24rem;
	background-color: rgba(255, 138, 152, 0.05); border-radius: 9999px; filter: blur(3rem);
}
.footer-grid {
	display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; position: relative; z-index: 10;
}

.footer-brand { font-size: 2.25rem; font-weight: 600; margin-bottom: 1.5rem; display: block; }
.footer-desc { color: #9ca3af; line-height: 1.625; margin-bottom: 1.5rem; }
.footer-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; padding-left: 0.75rem; border-left: 4px solid #FF8A98; }

.contact-link { display: flex; align-items: center; gap: 1rem; color: #414248; transition: color 0.3s; margin-bottom: 1.5rem; }
.contact-link:hover { color: #8ECAE6; }
.contact-icon {
	width: 3rem; height: 3rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.contact-icon.line { background-color: rgba(0, 185, 0, 0.2); color: #00B900; }
.contact-icon.phone { background-color: rgba(142, 202, 230, 0.2); color: #8ECAE6; }
.contact-icon svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }
.contact-link:hover .contact-icon { transform: scale(1.1); color: #ffffff; }
.contact-link:hover .contact-icon.line { background-color: #00B900; }
.contact-link:hover .contact-icon.phone { background-color: #8ECAE6; }
.contact-text-sm { font-size: 0.875rem; color: #6b7280; margin-bottom: 0.25rem; }
.contact-text-lg { font-size: 1.125rem; font-weight: 600; }

.footer-cta { display: flex; flex-direction: column; justify-content: center; }
.footer-cta p { color: #9ca3af; margin-bottom: 1rem; }
.btn-footer {
	background-color: #00B900; color: #ffffff; padding: 1.125rem 2.5rem; border-radius: 1rem;
	font-weight: 600; font-size: 1.125rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
	box-shadow: 0 0 24px rgba(0, 185, 0, 0.35); transition: background-color 0.3s; width: 100%;
}
.btn-footer:hover { background-color: #00a000; transform: translateY(-3px); }
.btn-footer svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }

.footer-bottom {
	border-top: 1px solid #1f2937; padding-top: 2rem; color: #6b7280; font-size: 0.875rem;
	display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.footer-links { display: flex; gap: 1rem; }
.footer-links a:hover { color: #FF8A98; }

/* =========================================================================
   MEDIA QUERIES 
   ========================================================================= */

/* SMALL DEVICES (TABLETS) */
@media (min-width: 640px) {
	.container { padding: 0 1.5rem; }
	.btn-hero { width: auto; }
	.hero h1 { font-size: 2.25rem; }
	.hero h1 .font-normal { display: inline; font-size: 2rem; }
	.hero p { font-size: 1.25rem; }
	.hero-actions { flex-direction: row; justify-content: center; }
	.section-header h2 { font-size: 2.25rem; }
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.pricing-list li { font-size: 1rem; }
	.btn-footer { width: auto; }
}

/* MEDIUM DEVICES (LARGE TABLETS) */
@media (min-width: 768px) {
	.section-header h2 { font-size: 3rem; }
	.pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
	.pricing-card { padding: 2.5rem; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* LARGE DEVICES (DESKTOPS) */
@media (min-width: 1024px) {
	.container { padding: 0 2rem; }
	.hero-grid { grid-template-columns: 7fr 5fr; }
	.hero-text { text-align: left; }
	.hero-actions { justify-content: flex-start; }
	.hero h1 { font-size: 2.5rem; }
	.hero p { margin-left: 0; }
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
	.lg-ml-12 { margin-left: 3rem; }
	.footer-cta { align-items: flex-end; }
	.footer-cta p { text-align: right; }
}
