@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

:root {
    --bg1: #BDFFFE;
    --bg2: #9DF2A3;
    --accent: #5C6BC0;
    --muted: #6b7280;
    --card: #ffffff;
    --glass: rgba(255,255,255,0.65);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg,var(--bg1),var(--bg2));
    background-attachment: fixed;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    display: block;
    padding: 32px;
}

.container {
    height: max-content!important;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(16,24,40,0.12);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-template-rows: auto 1fr auto;
    gap: 0;
}

header.topbar {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
}

.brand {
    display: flex;
    gap: 14px;
    align-items: center;
}

.logo {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg,var(--accent),#42a5f5);
    display: inline-grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(92,107,192,0.18);
}

.brand h1 {
    margin: 0;
    font-size: 18px
}

.brand p {
    margin: 0;
    font-size: 12px;
    color: var(--muted)
}

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 0;
    background: var(--card);
    box-shadow: 0 4px 12px rgba(15,23,42,0.06);
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn.primary {
        background: #47ac4e;
        color: white;
    }

        .btn.primary:hover {
            background: #3d9644;
        }

    .btn.large {
        padding: 14px 22px;
        font-size: 15px;
    }

.hero {
    padding: 32px;
    padding-bottom: 40px;
    overflow: visible;
}

    .hero h2 {
        font-size: 32px;
        margin: 0 0 12px;
        font-weight: 700;
    }

    .hero p {
        color: var(--muted);
        margin: 0 0 22px;
    }

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-card {
    margin-top: 24px;
    padding: 18px;
    border-radius: 12px;
    background: var(--glass);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0,0,0,0.04);
}

.side {
    border-radius: 15px;
    padding: 28px;
    background: rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    align-self: start; 
}

.card {
    background: var(--card);
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(16,24,40,0.04);
}

    .card h3 {
        margin: 0 0 6px
    }

.steps {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.step {
    display: flex;
    gap: 10px;
    align-items: center
}

.icon {
    width: 44px;
    height: 44px;
    min-width: 44px; 
    border-radius: 10px;
    background: #ddf5fd;
    display: grid;
    place-items: center;
    font-weight: 700
}

footer {
    grid-column: 1/-1;
    padding: 14px 32px;
    background: rgba(255,255,255,0.98);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 8px;
}

.muted {
    color: var(--muted);
    font-size: 13px
}

@media (max-width:980px) {
    body {
        padding: 16px;
    }

    .container {
        grid-template-columns: 1fr;
        padding-bottom: 12px
    }

    header.topbar {
        padding: 18px
    }

    .side {
        order: 2
    }

    .hero {
        order: 1
    }
}
