.grandio-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #F5F0E6;
}

.grandio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: min(30%, 350px);
    background: linear-gradient(180deg, #ECE3D3, transparent);
    pointer-events: none;
    z-index: 0;
}

.grandio-deco-1 {
    position: absolute;
    width: 480px;
    height: 480px;
    background: #ECE3D3;
    border-radius: 0px 200px;
    bottom: 0;
    left: 0;
}

.grandio-deco-2 {
    position: absolute;
    width: 638px;
    height: 638px;
    background: #ECE3D3;
    border-radius: 0px 200px;
    top: 240px;
    right: 0;
}

.grandio-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

/* BAL OLDAL */
.grandio-bal {
    flex: 0 0 640px;
    max-width: 6400px;
    position: relative;
    z-index: 5;
}

.grandio-focim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 42px;
    color: #0A4B55;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.grandio-focim span {
    color: #996C2D;
}

.grandio-szoveg {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #0A4B55;
    margin-bottom: 32px;
}

/* Store gombok */
.grandio-gombok {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.grandio-gombok .w100 {
    display: flex;
    gap: 12px;
}

.grandio-store-gomb {
    display: inline-flex;
    align-items: center;
    background-color: #0A4B55;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    padding: 8px 16px;
    transition: background-color 0.2s;
}

.grandio-store-gomb small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    font-family: 'Work Sans', sans-serif;
}

.grandio-store-gomb strong {
    display: block;
    font-size: 16px;
    font-family: 'Work Sans', sans-serif;
}

.grandio-store-svg {
    height: 40px;
    width: auto;
    display: block;
}

/* Web link */
.grandio-web-link {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #0A4B55;
    text-decoration: underline;
    width: 100%;
    text-align: center;
    font-weight: bold;
    text-align: center;
    font-weight: 700;
    margin: 40px 0;
}

/* App ikon */
.grandio-app-icon-wrap {
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
}

.grandio-app-icon {
    width: 200px;
    height: 200px;
    border-radius: 55px;
    box-shadow: 20px 20px 20px #00000029;
}

/* JOBB OLDAL - Telefonok */
.grandio-jobb {
    flex: 1;
    position: relative;
    min-height: 620px;
}

.grandio-phones {
    position: relative;
    width: 100%;
    height: 620px;
}

.phone {
    position: absolute;
    border-radius: 24px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Fő telefon - középen */
.phone-1 {
    width: 240px;
    left: 38%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 4;
    transition-delay: 0.4s;
}

/* Bal telefon - kilóghat a containerből */
.phone-2 {
    width: 190px;
    left: -30px;
    top: 50%;
    transform: translate(60px, -50%) scale(0.8);
    z-index: 3;
    transition-delay: 0.6s;
}

/* Jobb felső - magasabban */
.phone-3 {
    width: 190px;
    right: 2%;
    top: 2%;
    transform: translate(-40px, 40px) scale(0.8);
    z-index: 2;
    transition-delay: 0.8s;
}

/* Jobb alsó - lejjebb */
.phone-4 {
    width: 190px;
    right: 2%;
    bottom: 2%;
    transform: translate(-40px, -40px) scale(0.8);
    z-index: 2;
    transition-delay: 1.0s;
}

/* Animált állapot */
.grandio-phones.animated .phone {
    opacity: 1;
}

.grandio-phones.animated .phone-1 {
    transform: translate(-50%, -50%) scale(1);
}

.grandio-phones.animated .phone-2 {
    transform: translate(-60%, 0) scale(1)
}

.grandio-phones.animated .phone-3 {
    transform: translate(10%, -20%) scale(1)
}

.grandio-phones.animated .phone-4 {
    transform: translate(50%, 50%) scale(1)
}

.grandio-phones-mobil {
    display: none;
}

@media (max-width: 992px) {
    .grandio-section {
        min-height: unset;
        padding: 60px 0 0;
    }

    .grandio-inner {
        flex-direction: column;
        gap: 32px;
    }

    .grandio-bal {
        flex: none;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .grandio-focim {
        font-size: 28px;
    }

    .grandio-gombok {
        align-items: center;
        width: 100%;
    }

    .grandio-web-link {
        margin: 20px 0;
    }

    /* Mobilon elrejtjük a phones div-et */
    .grandio-jobb {
        width: 100%;
        min-height: unset;
    }

    .grandio-phones {
        display: none;
    }

    /* Mobilon 1 db kép */
    .grandio-phones-mobil {
        display: block;
        width: 100%;
        text-align: center;
        margin: 24px 0;
    }

    .grandio-phones-mobil img {
        width: 90%;
        max-width: 360px;
        margin: 0 auto;
        display: block;
    }

    /* App ikon mobilon */
    .grandio-app-icon-wrap {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 32px;
    }

    .grandio-app-icon {
        width: 120px;
        height: 120px;
    }

    /* Deko elemek mobilon */
    .grandio-deco-1,
    .grandio-deco-2 {
        display: none;
    }

    .grandio-app-icon-wrap {
        display: none !important
    }
}

.grandio-deco-anim {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 1s ease 0.4s, transform 1s cubic-bezier(0.34, 1.2, 0.64, 1) 0.4s;
}

.grandio-deco-2.grandio-deco-anim {
    transition-delay: 0.65s;
}

.grandio-deco-anim.animated {
    opacity: 1;
    transform: scale(1);
}

.grandio-gombok-container {
    max-width: 500px;
}

.grandio-icon-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease 1.2s, transform 0.9s cubic-bezier(0.34, 1.1, 0.64, 1) 1.2s;
}

.grandio-icon-anim.animated {
    opacity: 1;
    transform: translateY(0);
}