
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f8fafc;
    color: #1e293b;
}

a {
    text-decoration: none;
    color: inherit;
}

nav {
    background: #1e3a5f;
    padding: 0 24px;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    font-weight: 600;
}

nav a:hover {
    color: #fff;
}

.hero {
    background: linear-gradient(135deg, #1e3a5f, #1a56db);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    opacity: .9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 50px 0 80px;
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 2px solid #e2e8f0;
    position: relative;
}

.card.featured {
    border-color: #1a56db;
    box-shadow: 0 20px 60px rgba(26, 86, 219, .15);
    transform: scale(1.03);
}

.pop {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a56db;
    color: #fff;
    padding: 3px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.price {
    font-size: 46px;
    font-weight: 900;
    color: #1a56db;
    line-height: 1;
}

.price span {
    font-size: 15px;
    font-weight: 400;
    color: #64748b;
}

.desc {
    font-size: 14px;
    color: #64748b;
    margin: 10px 0 20px;
}

ul {
    list-style: none;
    margin-bottom: 28px;
}

ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}

ul li:last-child {
    border: none;
}

ul li i {
    color: #1a56db;
    font-size: 11px;
    flex-shrink: 0;
}

.btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all .2s;
}

.btn.primary {
    background: #1a56db;
    color: #fff;
}

.btn.primary:hover {
    background: #1e40af;
}

.btn.outline {
    border: 2px solid #1a56db;
    color: #1a56db;
}

.btn.outline:hover {
    background: #1a56db;
    color: #fff;
}