.hero {
    position: relative;
    background: radial-gradient(1200px 600px at 10% 10%, #4a89c7 0%, transparent 40%),
                linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: #fff;
    padding: 110px 20px 90px;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='2' cy='2' r='2'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.1rem);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.hero .subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
}

.content {
    max-width: 920px;
    margin: -60px auto 0;
    padding: 0 20px 80px;
}

.block {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 42px 40px;
    margin-bottom: 34px;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.06),
        0 2px 6px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.block:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.08),
        0 4px 10px rgba(0,0,0,0.05);
}

.block h2 {
    color: #1d3557;
    margin-top: 0;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.block p {
    line-height: 1.7;
}

.highlight {
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

.highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: 32px;
    bottom: 32px;
    width: 5px;
    border-radius: 6px;
    background: linear-gradient(180deg, #e67e22, #f4a261);
}

.call {
    text-align: center;
    background: linear-gradient(180deg, #f0f4f8, #ffffff);
}

.call .cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #e67e22, #f4a261);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 22px rgba(230,126,34,0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.call .cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(230,126,34,0.45);
}

.block ul {
    padding-left: 18px;
}

.block li {
    margin-bottom: 12px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .hero {
        padding: 80px 16px 70px;
    }

    .block {
        padding: 28px 24px;
    }
}

.with-image {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.with-image.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.with-image .image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow:
        0 10px 26px rgba(0,0,0,0.12),
        0 2px 6px rgba(0,0,0,0.08);
}

.with-image .text {
    max-width: 520px;
}

@media (max-width: 800px) {
    .with-image,
    .with-image.reverse {
        grid-template-columns: 1fr;
    }

    .with-image .text {
        max-width: none;
    }
}

