.landing-page-wrapper {
    width: 100%;
    max-width: var(--small-container);
    margin: 0 auto;
}

.content-box {
    display: flex;
    flex-direction: column;
}

.top-content-box {
    display: grid;
    height: 25rem;
    margin: auto;
    border-radius: 40px;
    min-width: 70%;
    max-width: var(--small-container);
    background-image: url("/static/images/landing_page/overview_box.1aaa76e98162.png");

}

.content-box-shape {
    border-radius: 40px;
    background-color: var(--telekom-color-primary-standard);
    height: 100%;
    width: 60%;
    padding: 2rem;
    color: white;
    clip-path: polygon(0% 0%, 85% 0%, 95% 50%, 0% 60%);
    object-fit: cover;
}

.content-box-shape-parent {
    filter: url('#flt_tag');
}

.box-text-container {
    grid-column: 1 / 1;
    grid-row: 1 / 1;

    padding: 0 25px 25px 25px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}


@media screen and (max-width: 700px) {
    .total-devices {
        width: auto;
        margin: unset;
    }

    .box-text-container {
        grid-column: 1 / 3;
        grid-row: 2 / 2;
    }

    .box-image-container {
        grid-column: 1 / 3;
        grid-row: 1 / 1;
        max-height: 250px;
    }

    .box-image-container img {
        clip-path: none;
        border-radius: 40px 40px 0 0;
    }
}

.services {
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1200px;
    background: #fff;
}

.services-heading {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 32px;
}

.service {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 18px 12px 8px;
    border-radius: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.service__icon {
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
}


.service__title {
    margin: 6px 0 8px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
}

.service__text {
    margin: 0 auto 14px;
    max-width: 36ch;
    font-size: 15px;
    line-height: 1.6;
}

.service__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: auto auto 0;
    font-weight: 600;
    text-decoration: none;
    color: #0070a8;
    border-bottom: 2px solid transparent;
}

.service__link::after {
    content: "›";
    font-size: 18px;
    line-height: 1;
}

.service__link:hover {
    border-bottom-color: currentColor;
}

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

.lp-triple-box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

.lp-triple-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: visible;
}

.lp-triple-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.triple-box-image-container {
    display: flex;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.triple-box-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.triple-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 8px 0 4px;
    text-align: center;
}

.triple-text p {
    font-size: 1.3rem;
    margin: 0 0 8px;
    text-align: center;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;

    margin-bottom: 23px;
}

@media (max-width: 768px) {
    .lp-triple-box-container {
        grid-template-columns: 1fr;
    }

    .lp-triple-item {
        width: 100%;
        max-width: 500px
        margin: 0 auto;
    }

    .triple-box-image-container {
        height: 200px;
    }

    .lp-triple-item scale-button {
        width: 100%;
    }

    .button-wrapper scale-button {
        width: auto;
        max-width: 600px;
    }
}

.contact-us-heading {
    color: rgb(226, 0, 116);
    font: var(--telekom-text-style-heading-3);
    margin: 0;
}

#contact-us-wrapper {
    max-width: var(--small-container);
    margin: 0 auto;
}

.contact-us-container {
    border-radius: 20px;
    padding: 25px;
    background-color: #F3F1EF;
    width: auto;
    position: relative;
    overflow: hidden;
}

.contact-us-image-container {
    position: absolute;
    z-index: 1;
    transform: rotate(140deg);
    bottom: -30px;
    right: 150px;
}

.contact-us-text-container > p {
    z-index: 5;
    position: relative;
}


/*MARK: Dynamic Blocks */
.blocks-container {
    --card-height: 25rem;
    --image-width-big: 20rem;
    --image-width: 15rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-auto-rows: var(--card-height);
    grid-column-gap: 2rem;
    grid-row-gap: 2em;
}

.block-card {
    width: 100%;
}

.block-card-big {
    grid-column: 1 / span 2;
}

.block-card-content-wrapper {
    height: calc(var(--card-height) / 1.5);
    margin: -24px;
    display: flex;
}

.block-card-big .block-card-content-wrapper {
    height: var(--card-height);
    flex-direction: row;
}

.block-card-big .block-card-content-wrapper .block-card-image {
    min-width: var(--image-width-big);
    max-width: var(--image-width-big);
}

.block-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.block-card-header {
    margin-bottom: 1rem;
}

.block-card-content-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.block-card-content-link {
    font-size: 1rem;
    align-self: flex-end;
}

.block-card-image {
    min-width: var(--image-width);
    max-width: var(--image-width);
}

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

@media screen and (max-width: 1000px) {
    .blocks-container {
        --image-width-big: 17rem;
        --image-width: 12rem;
    }
}

@media screen and (max-width: 700px) {
    .blocks-container {
        --card-height: 25rem;
        --image-width: 100%;
        --image-width-big: 100%;
        display: flex;
        flex-direction: column;
        margin: 4rem;
    }

    .block-card {
        width: 100%;
    }

    .block-card-big {
        grid-column: unset;
    }

    .block-card-content-wrapper {
        height: var(--card-height);
        margin: -24px;
        display: flex;
        flex-direction: column;
    }

    .block-card-big .block-card-content-wrapper {
        height: var(--card-height);
        flex-direction: column;
    }

    .block-card-big .block-card-content-wrapper .block-card-image {
        width: 100%;
    }

    .block-card-content {
        height: 100%;
    }

    .block-card-header {
        margin-bottom: 1rem;
    }

    .block-card-content-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .block-card-content-link {
        align-self: flex-end;
    }

    .block-card-image {
        width: 100%;
        height: 40%;
    }

    .block-card-image img {
        object-fit: cover;
        width: 100%;
    }
}

@media screen and (max-width: 550px) {
    .blocks-container {
        margin: auto;
    }
}

/* Phone */
@media screen and (max-width: 480px) {

    .content-box-shape h1 {
        font-size: 1rem;
        line-height: 1.15;
    }

    .content-box-shape p {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}

/* Tablets/IPads */
@media screen and (min-width: 481px) and (max-width: 1200px) {

    .content-box-shape h1 {
        font-size: 1.05rem;
        line-height: 1.2;
    }

    .content-box-shape p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .content-box-shape p .ipad-break {
        display: block;
    }
}