/* Premium packages styles */
:root {
	--text: #eaf2ff;
	--muted: #c9d7ee;
	--accent: #ff7a59;
	--accent-2: #ff9068;
	--outline: rgba(255,255,255,.16);
	--glass: rgba(255,255,255,.06);
	--glass-2: rgba(255,255,255,.10);
}

html, body { height: 100%; }
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
	color: var(--text);
	/* Layered, modern background */
	background:
		radial-gradient(1200px 600px at 20% 10%, rgba(255,255,255,0.08), transparent 60%),
		radial-gradient(800px 400px at 80% 0%, rgba(255,255,255,0.06), transparent 60%),
		linear-gradient(135deg, #1f3b5b, #2c2e73);
}

.container { width: min(1100px, 94%); margin: 0 auto; }
.header {
	padding: 18px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.title { font-weight: 900; font-size: clamp(20px, 3vw, 26px); display:flex; gap:10px; align-items:center; letter-spacing: .2px; }
.title span:first-child { filter: drop-shadow(0 6px 18px rgba(0,0,0,.25)); }
.btn {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #0b1324;
	border: 0;
	padding: 10px 14px;
	border-radius: 10px;
	font-weight: 800;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 10px 24px rgba(0,0,0,.35);
	transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.btn.secondary { background: transparent; color: var(--text); border: 1px solid var(--outline); }

.grid {
	display: grid;
	/* Auto-fit responsive cards */
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
	padding-bottom: 40px;
}
.card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--glass-2);
	background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(0,0,0,.32);
	padding: 16px;
	backdrop-filter: blur(6px);
	transform: translateY(0);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* Decorative glow border */
.card::before {
	content: "";
	position: absolute;
	inset: -2px;
	background: conic-gradient(from 180deg at 50% 50%, rgba(255,255,255,.28), rgba(255,255,255,0) 35%, rgba(255,255,255,.28));
	filter: blur(14px);
	opacity: .18;
	pointer-events: none;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(0,0,0,.42);
	border-color: rgba(255,255,255,.28);
}
.card h3 {
	margin: 6px 0 8px 0;
	font-size: 20px;
	letter-spacing: 0.2px;
	background: linear-gradient(135deg, #fff, #e2e8f0);
	-webkit-background-clip: text;
	        background-clip: text;
	color: transparent;
	text-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.price { margin: 2px 0 4px 0; }
.price.duration {
	font-size: 16px;
	font-weight: 700;
	color: var(--muted);
}
.price.amount {
	font-size: 32px;
	font-weight: 900;
	line-height: 1.15;
	background: linear-gradient(135deg, #fff, #dbeafe);
	-webkit-background-clip: text;
	        background-clip: text;
	color: transparent;
	text-shadow: 0 8px 24px rgba(0,0,0,.18);
	margin-bottom: 10px;
	letter-spacing: .3px;
}
.price.amount::first-letter { font-size: .9em; opacity: .95; }
.features { list-style: none; padding: 0; margin: 0 0 14px 0; display: grid; gap: 8px; color: var(--muted); }
.features li {
	position: relative;
	padding-left: 22px;
}
.features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #c9ecff;
	font-weight: 900;
	opacity: .9;
}
.cta { display: flex; gap: 10px; align-items: center; }
.cta .btn { width: 100%; justify-content: center; }
.cta .btn::after {
	content: "→";
	font-weight: 800;
	transform: translateX(2px);
	transition: transform .15s ease;
}
.cta .btn:hover::after { transform: translateX(6px); }

.badge {
	position: absolute;
	top: 10px; right: 10px;
	background: linear-gradient(135deg, #ffd08a, #ffb066);
	color: #0b1324;
	font-weight: 900;
	border-radius: 999px;
	padding: 6px 10px;
	box-shadow: 0 6px 16px rgba(0,0,0,.25);
	border: 1px solid rgba(0,0,0,.06);
	transform: rotate(-2deg);
}

.notice {
	margin: 18px 0 28px 0;
	text-align: center;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: .2px;
}

@media (max-width: 920px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }

.btn:focus-visible {
	outline: 3px solid rgba(255,255,255,.6);
	outline-offset: 2px;
}
.btn:hover {
	filter: brightness(1.05);
	box-shadow: 0 14px 30px rgba(0,0,0,.42);
	transform: translateY(-1px);
	transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}


