:root {
    --m-dark: #1d2b4f;
    --m-accent: #a259ff;
    --m-blue: #1cb5e0;
    --m-green: #59b43f;
    --m-amber: #ffb020;
    --m-border: #f1f4f8;
    --m-muted: #7c8494;
    --m-bg: #ffffff;
    --m-shadow-light: 0 4px 12px rgba(29, 43, 79, 0.06);
    --m-shadow-hover: 0 12px 28px rgba(29, 43, 79, 0.12);
}

* { box-sizing: border-box; }

html, body.mikup-home {
    margin: 0;
    padding: 0;
}

body.mikup-home {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--m-bg);
    color: var(--m-dark);
    -webkit-font-smoothing: antialiased;
}

.mikup-visually-hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.mikup-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px 32px;
}

.mikup-header .logo {
    height: 92px;
    width: auto;
    margin-bottom: 18px;
}

.mikup-header h2 {
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--m-muted);
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 96px;
    text-align: center;
}

.intro {
    margin-bottom: 48px;
}

.intro p {
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
    color: var(--m-dark);
    max-width: 680px;
    margin: 0 auto 30px;
}

.intro h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    color: var(--m-dark);
}

.intro h2 strong {
    font-weight: 800;
}

.section-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--m-muted);
    margin: 0 0 18px;
}

.compare-row,
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.compare-row {
    margin-bottom: 48px;
}

.card {
    width: 280px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--m-bg);
    border: 1px solid var(--m-border);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--m-shadow-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--m-shadow-hover);
    border-color: var(--m-accent);
}

.card-logo-wrap {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-platform-logo {
    display: block;
    max-height: 42px;
    max-width: 100%;
    width: auto;
}

.card p.card-desc {
    margin: 0 0 22px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--m-muted);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card a.card-cta {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--m-blue) 0%, var(--m-accent) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.card a.card-cta:hover {
    opacity: 0.92;
    transform: scale(1.03);
}

.mikup-footer {
    background: var(--m-dark);
    color: #fff;
    text-align: center;
    padding: 26px 20px;
    font-size: 0.85rem;
    font-weight: 400;
}

.mikup-footer .brand {
    font-weight: 700;
    color: var(--m-amber);
}

@media (max-width: 640px) {
    .mikup-header h2 { font-size: 1.1rem; }
    .intro h2 { font-size: 1.3rem; }
    .mikup-header { padding: 44px 16px 26px; }
    .mikup-header .logo { height: 60px; }
}
