:root {
    --bg: #f6f8fb;
    --card: #ffffff;
    --accent: #2563eb;
    --muted: #6b7280;
    --glass: rgba(255, 255, 255, 0.65);
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

html,
body {
    height: 100%;
    margin: 0;
    background: linear-gradient(180deg, #eef2ff 0%, var(--bg) 100%);
    color: #111827;
}

.wrap {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    box-sizing: border-box;
}

.card {
    width: 100%;
    max-width: 820px;
    background: var(--card);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    align-items: center;
}

/* left: title + service */
.left {
    padding: 14px 8px;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 6px;
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
}

h1 {
    margin: 0 0 8px 0;
    font-size: 22px;
    line-height: 1.05;
}

p.lead {
    margin: 0 0 18px 0;
    color: var(--muted);
}

.service {
    background: var(--glass);
    padding: 14px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 12px rgba(2, 6, 23, 0.06);
    font-size: 18px;
    color: var(--accent);
    font-weight: 700;
}

.service-info h4 {
    margin: 0;
    font-size: 15px;
}

.service-info p {
    margin: 6px 0 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* right: contact card */
.contact {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.02));
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    min-width: 240px;
}

.contact h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--accent);
}

.contact p.desc {
    margin: 0 0 16px 0;
    color: var(--muted);
    font-size: 14px;
}

.contact .info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.chip {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(2, 6, 23, 0.06);
    font-weight: 600;
}

.contact a {
    color: #0f172a;
    text-decoration: none;
}

.contact small {
    display: block;
    color: var(--muted);
    margin-top: 6px;
}

/* responsive */
@media (max-width:820px) {
    .card {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .contact {
        order: -1;
        margin-bottom: 12px;
    }
}

/* small footer */
.foot {
    text-align: center;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
}