* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.7;
}

.container {
    max-width: 1150px;
    margin: auto;
    padding: 40px 20px;
}

h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #38bdf8;
}

p {
    margin-bottom: 15px;
    color: #cbd5e1;
}

section {
    margin-bottom: 100px;
}

.hero {
    text-align: center;
    /*padding-bottom: 0;*/
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 20px auto;
}

.hero img {
    border-radius: 16px;
    width: 100%;
}

.card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
    margin-bottom: 30px;
}

.card h3 {
    margin-top: 0;
}

.card h3 ~ ul {
    flex-grow: 1;
}

.card h3 ~ ul:last-child {
    flex-grow: 0;
}

.card h4 {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(56, 189, 248, 0.5);
}

.card p {
    font-weight: bold;
    font-style: italic;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #38bdf8;
}

.card .card {
    transition: none;
    background: none;
    transform: none;
    border-color: initial;
}

.card .card {
    padding: 15px;
}

.card .card p {
    margin: 0;
}

ul {
    padding-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 8px;
}

.highlight {
    background: linear-gradient(135deg, rgb(56 189 248 / 13%), #0f172a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #38bdf8;
}

.steps {
    counter-reset: step;
    padding-left: 30px;
    padding-right: 30px;
}

.step {
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    line-height: 35px;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cta {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 80px;
    border-radius: 24px;
    color: white;
    margin-bottom: 0;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    border: 2px solid #38bdf8;
    color: #38bdf8;
    background: none;
    box-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
    transition: 0.3s;
}

.cta a:hover {
    transform: scale(1.05);
}

.cta a > svg {
    width: 30px;
    height: 30px;
}

footer {
    text-align: center;
    padding: 40px;
    color: #64748b;
    font-size: 14px;
}

@media only screen and (min-width: 1000px) {

    h1 {
        font-size: 48px;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .grid-2 > * {
        margin-bottom: 0;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .grid-3 > * {
        margin-bottom: 0;
    }

    .cta a {
        font-size: 30px;
        padding: 35px;
    }

    .cta a > svg {
        width: 40px;
        height: 40px;
    }
}
