* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', sans-serif;
background: #ffffff;
color: #0f0f0f;
line-height: 1.45;
overflow-x: hidden;
}
:root {
--primary-start: #7c3aed;
--primary-end: #6366f1;
--primary: linear-gradient(135deg, var(--primary-start), var(--primary-end));
--primary-solid: #7c3aed;
--primary-hover: #6d28d9;
--primary-light: #f5f3ff;
--primary-glow: rgba(124, 58, 237, 0.15);
--text: #0f0f0f;
--text-dark: #1f2937;
--text-muted: #6b7280;
--border: #e5e7eb;
--success: #10b981;
--danger: #ef4444;
--radius: 16px;
--shadow-lg: 0 20px 60px rgba(124, 58, 237, 0.2);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Animated Background */
.bg-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background:
radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
pointer-events: none;
}
.floating-shapes {
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
pointer-events: none;
}
.shape {
position: absolute;
filter: blur(50px);
opacity: 0.4;
animation: float 20s infinite ease-in-out;
}
.shape-1 {
width: 400px;
height: 400px;
background: var(--primary-start);
border-radius: 50%;
top: -100px;
right: -100px;
animation-delay: 0s;
}
.shape-2 {
width: 300px;
height: 300px;
background: var(--primary-end);
border-radius: 50%;
bottom: -50px;
left: -50px;
animation-delay: 5s;
}
@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -50px) scale(1.1); }
66% { transform: translate(-20px, 20px) scale(0.9); }
}
/* Header Section */
.comparison-header {
text-align: center;
padding: 80px 20px 40px;
position: relative;
}
.comparison-header h1 {
font-family: 'Poppins', sans-serif;
font-size: 3rem;
font-weight: 800;
color: var(--text);
margin-bottom: 16px;
letter-spacing: -0.02em;
/* Animation Removed */
}
.comparison-header h1 span {
background: var(--primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.comparison-header p {
font-size: 1.2rem;
color: var(--text-muted);
max-width: 600px;
margin: 0 auto;
/* Animation Removed */
}
/* Package Cards Container */
.packages-container {
max-width: 1400px;
margin: 0 auto;
padding: 10px 20px;
}
.packages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 10px;
margin-bottom: 10px;
}
.package-card {
background: white;
border: 2px solid var(--border);
border-radius: var(--radius);
padding: 15px 30px;
position: relative;
transition: var(--transition);
cursor: pointer;
overflow: hidden;
/* Animation Removed */
}
/* Animation Delays Removed */
.package-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--primary);
transform: scaleX(0);
transition: var(--transition);
}
.package-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
border-color: var(--primary-solid);
}
.package-card:hover::before {
transform: scaleX(1);
}
.package-card.selected {
border-color: var(--primary-solid);
box-shadow: 0 0 0 4px var(--primary-glow), var(--shadow-lg);
transform: translateY(-5px);
}
.package-card.selected::before {
transform: scaleX(1);
}
.badge {
position: absolute;
top: 10px;
right: 5px;
background: var(--primary);
color: white;
padding: 6px 12px;
border-radius: 20px;
font-size: 0.50rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.package-name {
font-family: 'Poppins', sans-serif;
font-size: 1.5rem;
font-weight: 700;
color: var(--text);
margin-bottom: 2px;
display: flex;
align-items: center;
gap: 10px;
}
.package-tagline {
color: var(--text-muted);
font-size: 0.95rem;
margin-bottom: 2px;
min-height: 25px;
}
.price-section {
margin: 14px 0;
padding: 10px;
background: var(--primary-light);
border-radius: 12px;
border: 1px solid rgba(124, 58, 237, 0.1);
}
.price {
font-size: 1.8rem;
font-weight: 800;
color: var(--text);
line-height: 1;
margin-bottom: 8px;
}
.price .currency {
font-size: 1.2rem;
vertical-align: super;
color: var(--primary-solid);
}
.price .period {
font-size: 1rem;
color: var(--text-muted);
font-weight: 500;
}
.features-list {
list-style: none;
margin: 14px 0;
}
.feature-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 0;
border-bottom: 1px solid #f3f4f6;
font-size: 0.95rem;
color: var(--text-dark);
transition: var(--transition);
}
.feature-item:last-child {
border-bottom: none;
}
.feature-item:hover {
transform: translateX(5px);
color: var(--primary-solid);
}
.check-icon {
width: 20px;
height: 20px;
background: var(--success);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
/* Animation Removed */
}
.check-icon svg {
width: 12px;
height: 12px;
color: white;
stroke-width: 3;
}
.cross-icon {
width: 20px;
height: 20px;
background: #f3f4f6;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
opacity: 0.5;
}
.cross-icon svg {
width: 12px;
height: 12px;
color: var(--text-muted);
stroke-width: 3;
}
.select-btn {
    text-decoration: none;
width: 100%;
padding: 16px;
background: var(--primary);
color: white;
border: none;
border-radius: 12px;
font-size: 1rem;
font-weight: 700;
cursor: pointer;
transition: var(--transition);
margin-top: 20px;
position: relative;
overflow: hidden;
}
.select-btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}
.select-btn.selected {
background: var(--success);
}
/* Comparison Table Section */
.comparison-section {
max-width: 1400px;
margin: 80px auto;
padding: 0 20px;
/* Animation Removed */
}
.section-title {
text-align: center;
margin-bottom: 50px;
}
.section-title h2 {
font-family: 'Poppins', sans-serif;
font-size: 2.5rem;
font-weight: 700;
color: var(--text);
margin-bottom: 12px;
}
.section-title h2 span {
background: var(--primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section-title p {
color: var(--text-muted);
font-size: 1.1rem;
}
.comparison-table-wrapper {
background: white;
border-radius: var(--radius);
box-shadow: 0 10px 40px rgba(0,0,0,0.05);
overflow: hidden;
border: 1px solid var(--border);
}
.comparison-table {
width: 100%;
border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
padding: 20px;
text-align: left;
border-bottom: 1px solid var(--border);
}
.comparison-table th {
background: var(--primary-light);
font-weight: 700;
color: var(--text-dark);
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.5px;
position: sticky;
top: 0;
text-align: center;
}
.comparison-table th:first-child {
border-radius: var(--radius) 0 0 0;
}
.comparison-table th:last-child {
border-radius: 0 var(--radius) 0 0;
}
.comparison-table tr:hover {
background: #fafafa;
}
.comparison-table td {
font-size: 0.95rem;
color: var(--text-dark);
transition: var(--transition);
text-align: center;
}
.comparison-table .feature-name {
font-weight: 600;
color: var(--text);
display: flex;
align-items: center;
gap: 10px;
background-color: #f9f6f6;
}
.comparison-table .feature-name svg {
width: 18px;
height: 18px;
color: var(--primary-solid);
}
.comparison-table .check {
color: var(--success);
font-weight: 700;
text-align: center;
}
.comparison-table .cross {
color: var(--text-muted);
opacity: 0.4;
text-align: center;
}
.highlight-col {
background: rgba(124, 58, 237, 0.03);
font-weight: 600;
}
/* Responsive */
@media (max-width: 1024px) {
.packages-grid {
grid-template-columns: 1fr;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.comparison-table {
font-size: 0.85rem;
}
.comparison-table th,
.comparison-table td {
padding: 15px 10px;
}
}
@media (max-width: 768px) {
.comparison-header h1 {
font-size: 2rem;
}
.section-title h2 {
font-size: 1.8rem;
}
.price {
font-size: 2.5rem;
}
.comparison-table-wrapper {
overflow-x: auto;
}
.comparison-table {
min-width: 800px;
}
}
/* Loading Animation */
.loading-skeleton {
background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
background-size: 200% 100%;
animation: loading 1.5s infinite;
border-radius: 8px;
}
@keyframes loading {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
/* Selection Counter */
.selection-info {
text-align: center;
margin-bottom: 30px;
padding: 20px;
background: var(--primary-light);
border-radius: 12px;
border: 2px solid var(--primary-solid);
display: none;
}
.selection-info.active {
display: block;
/* Animation Removed */
}