/* ================= HERO ================= */


.hero-content {
    max-width: 740px;
    padding-top: 0;
}

.hero-eyebrow {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    margin-bottom: 14px;
}

.hero-section h1 {
    font-size: 40px;
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 720px;
}

.hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-soft);
    margin-bottom: 26px;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    min-width: 182px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual-stage {
    width: 100%;
    min-height: 360px;
    border-radius: 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.18) 45%,
        rgba(255, 255, 255, 0.02) 100%
    );
}

.hero-visual-stage::before {
    content: "";
    position: absolute;
    inset: 10% 10% 12% 10%;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.32),
        rgba(215, 230, 255, 0.10)
    );
    filter: blur(16px);
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 136%;
    max-width: 920px;
    height: auto;
    display: block;
    transform: translate(-2%, 8%);
}

/* ================= SERVICE SECTION ================= */


.services-section {
    position: relative;
    padding-bottom: 60px;
    z-index: 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.55), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.35), transparent 28%),
        linear-gradient(
            180deg,
            rgba(221, 233, 252, 0.88) 0%,
            rgba(235, 242, 255, 0.82) 100%
        );
    backdrop-filter: blur(8px);
    margin: -18px 20px 0;
}

.services-section::before {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -110px;
    height: 260px;

    background: radial-gradient(
        120% 100% at 50% 0%,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 40%,
        rgba(255,255,255,0.5) 65%,
        rgba(255,255,255,0) 100%
    );

    filter: blur(6px);
    pointer-events: none;
    z-index: 1;
}

.services-header {
    position: relative;
    z-index: 2;
}

.services-header h2 {
    margin-bottom: 10px;
}

.services-grid {
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.service-card {
    min-height: 300px;
    padding: 34px 28px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);
    box-shadow:
        0 18px 36px rgba(74, 108, 168, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border-radius: 10px;
}

.service-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    color: #4d88ea;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(85, 118, 176, 0.08);
}

.services-grid .service-card h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 18px;
    text-align: center;
}

.services-grid .service-card p {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-cta {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 34px;
    margin-bottom: 50px;
}

.services-cta-btn {
    min-width: 260px;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 999px;
    border: 1px solid rgba(139, 170, 224, 0.25);
    color: var(--color-text);
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(72, 105, 162, 0.08);
}

/* ================= PROJEKT SECTION ================= */

.projects-section {
    position: relative;
    margin-top: -18px;
    padding-bottom: 110px;
    z-index: 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.55), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.35), transparent 28%),
        linear-gradient(
            180deg,
            rgba(221, 233, 252, 0.88) 0%,
            rgba(235, 242, 255, 0.82) 100%
        );
    backdrop-filter: blur(8px);
    margin: -18px 20px 0;
}

.projects-section::before {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -110px;
    height: 260px;

    background: radial-gradient(
        120% 100% at 50% 0%,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 40%,
        rgba(255,255,255,0.5) 65%,
        rgba(255,255,255,0) 100%
    );

    filter: blur(6px);
    pointer-events: none;
    z-index: 1;
}

.projects-header,
.projects-layout {
    position: relative;
    z-index: 2;
}

.projects-layout {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.projects-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.project-card,
.benefits-card {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);
    box-shadow:
        0 18px 36px rgba(74, 108, 168, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    overflow: hidden;
}

.project-image {
    height: 190px;
    overflow: hidden;
    background: rgba(255,255,255,0.18);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 24px 26px 28px;
    background: rgba(255, 255, 255, 0.20);
}

.project-content h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--color-text);
}

.project-sub {
    font-size: 18px;
    color: var(--color-text-soft);
    margin-bottom: 8px;
}

.project-desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-soft);
    opacity: 0.9;
    margin-bottom: 18px;
}

.project-content .btn {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
}

/* ================= BENEFITS SECTION ================= */

.benefits-card {
    height: 100%;
    padding: 36px 34px;
}

.benefits-card h3 {
    font-size: 26px;
    margin-bottom: 26px;
    color: var(--color-text);
}

.benefits-list {
    display: grid;
    gap: 18px;
    margin-bottom: 34px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-text);
    font-size: 18px;
}

.benefits-list i {
    color: #188fd0;
    font-size: 20px;
}

.benefits-cta {
    width: 100%;
    justify-content: center;
    min-height: 54px;
}

/* ================= PROCESS SECTION ================= */

.process-section {
    position: relative;
    margin-top: -18px;
    padding-bottom: 50px;
    z-index: 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.55), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.35), transparent 28%),
        linear-gradient(
            180deg,
            rgba(221, 233, 252, 0.88) 0%,
            rgba(235, 242, 255, 0.82) 100%
        );
    backdrop-filter: blur(8px);
    margin: -18px 20px 0;
}

.process-section::before {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -110px;
    height: 260px;

    background: radial-gradient(
        120% 100% at 50% 0%,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 40%,
        rgba(255,255,255,0.5) 65%,
        rgba(255,255,255,0) 100%
    );

    filter: blur(6px);
    pointer-events: none;
    z-index: 1;
}

.process-header,
.process-grid {
    position: relative;
    z-index: 2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.process-card {
    min-height: 260px;
    padding: 32px 28px 28px;
    text-align: center;

    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);

    box-shadow:
        0 18px 36px rgba(74, 108, 168, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);

    border-radius: 10px;
    position: relative;
}

.process-number {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 20px;
    font-weight: 700;
    color: rgba(23, 59, 122, 0.5);
}

.process-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.75);
    color: #4d88ea;
    font-size: 26px;

    box-shadow: 0 10px 20px rgba(85, 118, 176, 0.08);
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 18px;
    color: var(--color-text-soft);
    line-height: 1.5;
}

/* ================= MOBIL VERSION ================= */
/* ================= TABLET VERSION ================= */

@media (max-width: 1100px) {
    .hero-section h1 {
        font-size: 42px;
        max-width: 520px;
    }

    .hero-text {
        font-size: 18px;
    }

    .hero-visual-stage {
        min-height: 300px;
    }

    .hero-image {
        width: 112%;
        max-width: 680px;
        transform: translate(-2%, 4%);
    }

    .projects-layout,
    .projects-cards {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 220px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }
}

/* ================= HANDY VERSION ================= */

@media (max-width: 700px) {
    .main {
        padding: 20px 0 30px;
    }

    .hero-section h1 {
        font-size: 34px;
        max-width: 100%;
    }

    .hero-text {
        font-size: 17px;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual-stage {
        min-height: 220px;
        border-radius: 24px;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    .services-section {
        margin-top: -12px;
        padding-bottom: 5px;
    }

    .services-section::before {
        bottom: -70px;
        height: 150px;
    }

    .services-grid .card-box {
        min-height: auto;
    }

    .projects-section {
        padding-bottom: 40px;
    }

    .process-section {
        padding-bottom: 5px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-visual {
        order: 1;
    }

    .hero-content {
        order: 2;
    }

    .hero-section {
        padding-top: 18px;
        padding-bottom: 35px;
    }

    .hero-visual-stage {
        min-height: 210px;
        margin-bottom: 18px;
    }

    .hero-content {
        text-align: left;
    }
}