.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 76px;
    height: auto;
    display: block;
}

.brand h1 {
    margin: 0;
    font-size: 22px;
}

.brand p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.top-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 18px;
    margin-bottom: 28px;
}

.hero-main,
.hero-side {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,251,252,0.98));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-main {
    padding: 34px 30px;
}

.hero-main .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent-soft);
    font-weight: 700;
}

.hero-main h2 {
    margin: 0 0 14px;
    font-size: 40px;
    line-height: 1.05;
    max-width: 700px;
}

.hero-main p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 18px;
    max-width: 720px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f5fafc;
    border: 1px solid rgba(11, 34, 49, 0.08);
    font-size: 13px;
    color: #2f4959;
}

.hero-side {
    padding: 24px;
}

.hero-side h3 {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-side p {
    margin-top: 0;
    color: var(--muted);
    line-height: 1.5;
}

.hero-side input {
    width: 100%;
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    font-size: 14px;
}

.section {
    margin-top: 26px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.section-head h3 {
    margin: 0;
    font-size: 28px;
}

.section-head p {
    margin: 4px 0 0;
    color: var(--muted);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.card h4 {
    margin: 0 0 8px;
    font-size: 20px;
}

.card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.5;
}

.price {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,251,252,0.98));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.feature h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
}

.footer {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .hero,
    .grid-3,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-main h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-main {
        padding: 22px;
    }

    .hero-main h2 {
        font-size: 28px;
    }

    .hero-main p {
        font-size: 16px;
    }
}
.feature-actions {
    margin-top: 16px;
}

.feature-actions .btn {
    width: 100%;
}