:root {
    --theme-r: var(--zenzoh-orange-r);
    --theme-g: var(--zenzoh-orange-g);
    --theme-b: var(--zenzoh-orange-b);

    --theme-color: rgb(
        var(--theme-r),
        var(--theme-g),
        var(--theme-b)
    );
}
/* =========================
   Hero
========================= */
.home-hero {
    position: relative;
    overflow: hidden;

    /* nincs hero háttér */
    background: transparent;
}




.hero-content {
    width: min(1800px, 98%);

    margin: 0 auto;

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

    flex-wrap: wrap;
}


/* =========================
   BAL OLDAL
========================= */

.hero-text {
    position: relative;
    z-index: 10;
    display: flex;

    background: radial-gradient(
        ellipse at left center,
        rgba(0, 25, 23, .55) 0%,
        rgba(0, 25, 23, .5) 35%,
        rgba(0, 25, 23, .45) 65%,
        rgba(0, 25, 23, .0) 72%,
        rgba(0, 25, 23, 0) 100%
    );
    backdrop-filter: blur(2px);
    border-radius: 20px;

    padding: 1rem 1.5rem 1rem 1rem;
}

.hero-logo {
    width: 175px;
    height: auto;

    margin-bottom: 34px;

    object-fit: contain;
    align-self: center;
}

.hero-eyebrow, .hero-description, .hero-text h1{
    text-shadow: 5px 5px 8px rgba(0, 0, 0, 1);

    background: radial-gradient(
        ellipse at center center,
        rgba(0, 25, 23, .1) 0%,
        rgba(0, 25, 23, .1) 65%,
        rgba(0, 25, 23, .0) 90%,
        rgba(0, 25, 23, 0) 100%
    );
}

.hero-eyebrow {
    margin: 0;
    padding: 20px 0 20px;

    color: #4de0e9;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.28em;
}


.hero-text h1 {
    margin: 0;

    color: #fdfdfd;

    font-size: clamp(45px, 3.8vw, 66px);
    line-height: 1;

    font-weight: 800;
}


.hero-text h1 span {
    color: #4de0e9;
}


.hero-description {
    max-width: 540px;

    margin-top: 26px;

    color: rgba(253, 253, 253, 0.76);

    font-size: 17px;
    line-height: 1.6;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 30px;
    padding: 14px 24px;

    border: 1px solid rgba(77, 224, 233, 0.45);
    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #00aa9c 0%,
            #4de0e9 100%
        );

    color: #001412;
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 8px 24px rgba(0, 170, 156, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.hero-button span {
    display: inline-block;

    font-size: 22px;
    line-height: 1;

    transition: transform 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 32px rgba(0, 170, 156, 0.32),
        0 0 22px rgba(77, 224, 233, 0.18);
}

.hero-button:hover span {
    transform: translateX(5px);
}

.hero-button:active {
    transform: translateY(0);
}


/* =========================
   JOBB OLDAL
========================= */

.hero-right {
    position: relative;

    display: flex;

    min-width: 600px;

    align-items: center;

    gap: 10px;
}


/* =========================
   AUTÓ WRAPPER
========================= */

.car-wrapper {
    position: relative;

    min-height: 440px;

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

    /*
        nagyon fontos:
        a speech bubble ehhez igazodik
    */
    isolation: isolate;
}


/* =========================
   AUTÓ MÖGÖTTI HALVÁNY FÉNY
========================= */

.car-glow {
    position: absolute;

    z-index: -1;

    width: 115%;
    aspect-ratio: 1.35;

    left: 50%;
    bottom: 5%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,

            rgba(77, 224, 233, 0.18) 0%,

            rgba(0, 170, 156, 0.10) 32%,

            rgba(0, 170, 156, 0.035) 55%,

            transparent 73%
        );

    filter: blur(25px);

    pointer-events: none;
}


/* =========================
   AUTÓ
========================= */

.hero-car {
    position: relative;

    z-index: 2;

    display: block;

    width: 28vw;
    max-width: 620px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 30px
            rgba(0, 0, 0, 0.45)
        );
}


/* =========================
   BESZÉDBUBORÉK

   FONTOS:
   már az autó wrapperében van.
========================= */

.speech-bubble {
    position: absolute;
    z-index: 4;

    bottom: 16vw;
    left: 8%;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 15px 21px;

    background: rgba(0, 34, 31, 0.72);

    border: 1px solid rgba(77, 224, 233, 0.7);
    border-radius: 17px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}


/* A buborék bal oldalán lévő kis nyíl */
.speech-bubble::after {
    content: "";

    position: absolute;

    left: -9px;
    top: 50%;

    width: 17px;
    height: 17px;

    background: rgba(0, 34, 31, 0.72);

    border-left: 1px solid rgba(77, 224, 233, 0.7);
    border-bottom: 1px solid rgba(77, 224, 233, 0.7);

    transform:
        translateY(-50%)
        rotate(45deg);
}


.speech-bubble span {
    color: #fdfdfd;

    font-size: 14px;
    line-height: 1.4;

    white-space: nowrap;
}

/* =========================
   AUDIO
========================= */

.voice-bars {
    height: 38px;

    display: flex;
    align-items: center;

    gap: 4px;
}


.voice-bars i {
    display: block;

    width: 4px;

    border-radius: 999px;

    background: #4de0e9;

    box-shadow:
        0 0 8px
        rgba(77, 224, 233, 0.7);
}


.voice-bars i:nth-child(1) {
    height: 14px;
}

.voice-bars i:nth-child(2) {
    height: 24px;
}

.voice-bars i:nth-child(3) {
    height: 35px;
}

.voice-bars i:nth-child(4) {
    height: 25px;
}

.voice-bars i:nth-child(5) {
    height: 15px;
}


/* =========================
   FEATURE PANEL
========================= */

.feature-card {
    position: relative;

    height: 260px;
    width: 265px;

    z-index: 5;

    padding: 16px;

    background:
        rgba(0, 25, 23, 0.66);

    border:
        1px solid
        rgba(77, 224, 233, 0.18);

    border-radius: 20px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 16px 35px
        rgba(0, 0, 0, 0.24);
}


.feature-item {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 0;
}


.feature-item + .feature-item {
    border-top:
        1px solid
        rgba(253, 253, 253, 0.07);
}


.feature-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(77, 224, 233, 0.10);

    color: #4de0e9;
}


.feature-item strong {
    display: block;

    color: #fdfdfd;

    font-size: 14px;
}


.feature-item span {
    display: block;

    margin-top: 3px;

    color:
        rgba(253, 253, 253, 0.56);

    font-size: 11px;

    line-height: 1.35;
}

/*==========================
 Section 2
===========================*/
.product-section {
    position: relative;

    width: 100%;
    padding: 20px 2%;

    background: rgba(0, 0, 0, 0.78);
}

.product-section-header {
    width: 90%;
    margin: 0 auto 20px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-eyebrow {
    margin-bottom: 12px;

    color: #4de0e9;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.product-section-header h2 {
    margin: 0;

    color: #fdfdfd;

    font-size: clamp(38px, 5vw, 70px);
    line-height: 1;
}

.product-section-header h2 span {
    color: #00aa9c;

    text-shadow:
        0 0 15px rgba(0, 170, 156, 0.25);
}

.product-section-header > div > p:last-child {
    max-width: 600px;
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 17px;
    line-height: 1.6;
}

.product-section-more{
    color: var(--theme-color);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.product-section-more:hover {
    transform: translateY(-2px);
    color: #4de0e9;
}


/* TERMÉKEK */

.product-list {
    width: 96%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
}


/* TERMÉK KÁRTYA */

.product-card {
    flex: 1 1 100px;
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);

    border-color: rgba(77, 224, 233, 0.35);
}


/* KÉP */

.product-image-wrapper {
    margin-top: 10px;

    width: 95%;
    aspect-ratio: 16 / 11;

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

}

.product-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}


/* SZÖVEGES RÉSZ */

.product-info {
    padding: 16px;

    height: 200px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    flex: 1;
}

.product-name {
    margin: 0;

    color: #fdfdfd;

    font-size: 25px;
    font-weight: 700;
}

.product-description {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 15px;
    line-height: 1.6;
}


/* KÁRTYA ALJA */

.product-bottom {
    margin-top: 15px;

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

    gap: 10px;
}

.product-price {
    color: #fdfdfd;

    font-size: 20px;
    font-weight: 700;
}

.product-button {
    padding: 14px 12px;

    border: 1px solid rgba(77, 224, 233, 0.35);
    border-radius: 999px;

    background: #00aa9c;

    color: #001412;

    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.product-button:hover {
    transform: translateY(-2px);
    background: #4de0e9;
}

/* Section 3 */

.benefit-bar {
    width: 100%;
    padding: 25px 2%;

    background: rgba(0, 25, 23, 0.45);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-top: 1px solid rgba(77, 224, 233, 0.15);
    border-bottom: 1px solid rgba(77, 224, 233, 0.15);
}


.benefit-container {
    width: min(1500px, 100%);
    margin: 0 auto;

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


.benefit-box {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 5px 30px;

    position: relative;
}


/* ELVÁLASZTÓ VONAL */

.benefit-box:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 10%;

    width: 1px;
    height: 80%;

    background: rgba(77, 224, 233, 0.25);
}


/* IKON KÖR */

.benefit-circle {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

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

    background: var(--theme-color);

    border-radius: 50%;
}


/* IDE KERÜL MAJD AZ IKON */

.benefit-circle span {
    color: #001817;
    font-size: 20px;
}


/* SZÖVEG */

.benefit-content h3 {
    margin: 0 0 6px;

    color: #fdfdfd;

    font-size: 15px;
    font-weight: 600;
}


.benefit-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
    line-height: 1.4;
}

.about-preview {
    width: 100%;
    min-height: 520px;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background: rgba(0,50,50, .2);
}


/*================
    Section 4
==================*/
.about-preview-image {
    position: relative;

    flex: 1.15 1 600px;
    min-height: 520px;

    overflow: hidden;

     -webkit-mask-image: linear-gradient(
        to right,
        black 0%,
        black 75%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        black 0%,
        black 75%,
        transparent 100%
    );
}


.about-preview-image img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* KÉP JOBB OLDALI ELOLVADÁSA */

.about-preview-image::after {
    content: "";

    position: absolute;
    z-index: 2;

    inset: 0;

    pointer-events: none;

    background: linear-gradient(
        to right,
        transparent 55%,
        rgba(0, 20, 18, 0.25) 70%,
        rgba(0, 20, 18, 0.75) 88%,
        #001412 100%
    );

}


/* =========================================
   BESZÉDBUBORÉK
========================================= */

.about-speech {
    position: absolute;

    z-index: 4;

    top: 22%;
    right: 8%;

    padding: 15px 21px;

    color: #fdfdfd;

    font-size: 15px;
    line-height: 1.4;

    background: rgba(0, 25, 23, 0.72);

    border: 1px solid var(--theme-color);
    border-radius: 17px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3);
}


/* BESZÉDBUBORÉK NYILA */

.about-speech::after {
    content: "";

    position: absolute;

    left: 28px;
    bottom: -9px;

    width: 17px;
    height: 17px;

    background: rgba(0, 25, 23, 0.72);

    border-right: 1px solid var(--theme-color);
    border-bottom: 1px solid var(--theme-color);

    transform: rotate(45deg);
}


/* =========================================
   JOBB OLDAL
========================================= */

.about-preview-content {
    position: relative;

    flex: 0.85 1 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding:
        clamp(50px, 6vw, 100px)
        clamp(35px, 6vw, 100px)
        clamp(50px, 6vw, 100px)
        30px;

    /*
       Direkt nincs background.
    */
}


/* KIS FELSŐ FELIRAT */

.about-preview-eyebrow {
    margin: 0 0 13px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
}


/* CÍM */

.about-preview-content h2 {
    margin: 0;

    color: #fdfdfd;

    font-size: clamp(34px, 3.2vw, 55px);
    line-height: 1.05;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.6);
}


.about-preview-content h2 span {
    color: var(--theme-color);

    text-shadow:
        0 0 15px rgba(77, 224, 233, 0.2);
}


/* LEÍRÁS */

.about-preview-description {
    max-width: 600px;

    margin: 25px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================
   GOMB
========================================= */

.about-preview-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 30px;
    padding: 13px 24px;

    background: var(--theme-color);

    border-radius: 999px;

    color: #001412;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}


.about-preview-button,
.about-preview-button:visited {
    color: #001412;
}


.about-preview-button:hover {
    transform: translateY(-2px);

    filter: brightness(1.1);
}


.about-preview-button span {
    font-size: 20px;

    transition: transform 0.2s ease;
}


.about-preview-button:hover span {
    transform: translateX(5px);
}





@media (max-width: 600px) {

    .about-preview-image {
        min-height: 380px;
    }


    .about-speech {
        top: 15%;
        right: 5%;

        font-size: 13px;
    }


    .about-preview-content h2 {
        font-size: 36px;
    }

}
/*================
    Media query
==================*/

@media (max-width: 1480px) {
    .feature-card{
        height: 240px;
        max-width: 200px;
    }

    .feature-icon{
        display: none;
    }
}
@media (max-width: 1380px) {
    .product-card{
        max-width: 280px;
    }

    .product-card:nth-child(5) {
        display: none;
    }
}

@media (max-width: 1250px) {
    .hero-right{
        padding: 0 6% 0;
    }
    .feature-card{
        max-width: 280px;
        width: calc(auto + 20px);
        height: auto;
    }
    .feature-icon{
        display: grid;
    }
    .hero-car{
        width: calc(50px + 50vw);
    }
    .speech-bubble{
        bottom: 30vw;
    }
}

@media (max-width: 1100px){
    .product-card:nth-child(4) {
        display: none;
    }
}

@media (max-width: 800px){
    .product-card:nth-child(3) {
        display: none;
    }
}

/* Section 3 */

@media (max-width: 1000px) {

    .benefit-container {
        flex-wrap: wrap;
    }

    .benefit-box {
        flex: 1 1 40%;
        padding: 20px;
    }

      /* Vízszintes vonal:
       csak a felső két elem alatt */
    .benefit-box:nth-child(-n+2)::before {
        content: "";
        position: absolute;

        left: 5%;
        bottom: 0;

        width: 90%;
        height: 1px;

        background: rgba(77, 224, 233, 0.25);
    }
}


/* MOBIL */

@media (max-width: 600px) {

    .benefit-box {
        flex: 1 1 100%;
    }

  .benefit-box::before {
        content: "";
        position: absolute;

        left: 5%;
        bottom: 0;

        width: 90%;
        height: 1px;

        background: rgba(77, 224, 233, 0.25);
    }

    .benefit-box:last-child::before {
        display: none;
    }

}

/* =========================================
   Section 4
========================================= */

@media (max-width: 900px) {

    .about-preview {
        flex-wrap: wrap;
    }


    .about-preview-image {
        flex: 1 1 100%;

        min-height: 450px;
    }


    /*
       Mobilon már nem jobbra,
       hanem lefelé olvad el a kép.
    */

    .about-preview-image::after {
        background: linear-gradient(
            to bottom,
            transparent 55%,
            rgba(0, 20, 18, 0.35) 72%,
            #001412 100%
        );
    }


    .about-preview-content {
        flex: 1 1 100%;

        padding: 20px 7% 70px;
    }

}
