:root {
    --primary-color: #6c5ce7;
    --secondary-color: #0984e3;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --bg-color: #f4f7f6;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --card-bg: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.top-bar {
    height: 6px;
    width: 100%;
    background: var(--gradient);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.brand-left h2 {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

.brand-right {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.brand-right strong {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 5px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.hero .sub-text {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.08);
}

.card-featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    background: #ffffff;
    z-index: 2;
}

.card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-main);
}

.price span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
    opacity: 0.95;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(108, 92, 231, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(108, 92, 231, 0.05);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid #ddd;
    width: auto;
    padding: 12px 30px;
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: #e9ecef;
}

/* Migration Section */
.migration {
    background: rgba(0,0,0,0.02);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    border: 1px dashed rgba(0,0,0,0.1);
}

.migration h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.migration p {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0 60px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.contact-links {
    margin-bottom: 20px;
}

.contact-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-links a:hover {
    text-decoration: underline;
}

.divider {
    color: #ccc;
    margin: 0 10px;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .card-featured {
        transform: scale(1);
    }
    .card-featured:hover {
        transform: translateY(-5px);
    }
    .hero h1 {
        font-size: 2rem;
    }
    .header {
        flex-direction: column;
        gap: 10px;
    }
}