.hero {
    background-size: cover;
    background-position: center;
   height: 100vh;
    border-radius: 48px;
    margin: 40px auto 0 auto;
    box-shadow: 0 16px 64px 0 rgba(24,39,80,0.08), 0 2px 8px 0 rgba(24,39,80,0.06);
    display: flex;
    
align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
   
}
.hero-section{
     background-image: linear-gradient(rgb(255, 255, 255) 65%, rgb(245, 247, 252) 65%);
  padding-top: 0;
  padding-bottom: 0;
}
/*.hero::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgba(0, 0, 0, 0.44);*/
/*    z-index: 1;*/
/*}*/

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 68px 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-bg{
    width: 80%;
}
.hero-title {
    font-size: 60px;
    line-height: 1.233;
    font-weight: 700;
    color: #f5f7fc;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: .02em;
    text-shadow: 0 6px 20px #00000087;
}

.hero-desc {
    color: #f5f7fc;
    opacity: 0.92;
    font-size: 1.17rem;
    margin-bottom: 32px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-top: 22px;
    margin-bottom: 38px;
}

.btn {
    border: none;
    border-radius: 2.5rem;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: box-shadow 0.14s, background 0.14s, color 0.14s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    min-height: 54px;
    background: none;
}

.btn-primary {
    background-color: #ff3951;
  box-shadow: 0 15px 32px #ff395161;
  color:  #fff;
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 1000px;
  padding: 18px 30px;
  font-weight: 700;
  line-height: 1.111em;
  transition: transform .3s, box-shadow .3s;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #ff3951;
    color: #fff;
    transform: translateY(-10px);
    /* Ostaje ista boja i sjena */
}


/* Marketing Agency (subtitle nad naslovom) */
.hero-subtitle {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.07em;
    font-size: 1.02rem;
    margin-bottom: 16px;
    text-shadow: 0 1px 4px rgba(24,39,80,0.14);
}

/* Logoi/klijenti dole */
.hero-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-evenly;
    align-items: center;
    border-top: 1px solid rgba(243,244,248,0.21);
    padding-top: 30px;
    margin-top: 32px;
    margin-bottom: 12px;
    width: 100%;
}

.hero-logo-img {
    max-height: 38px;
    width: auto;
    display: block;
    filter: grayscale(100%) brightness(90%);
    opacity: 0.7;
    transition: filter 0.15s, opacity 0.15s;
    background: transparent;
}

.hero-logo-img:hover {
    filter: none;
    opacity: 1;
}

@media (max-width: 1100px) {
    .hero {
        height: 70vh;
        margin-top: 0;

    }
    .w-80{
        width: 100% !important;
    }
    .hero {
        max-width: 98vw;
        border-radius: 32px;
    }
    .hero-inner {
        padding: 44px 12px 26px 12px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-logos {
        gap: 22px;
        padding-top: 22px;
    }
}

@media (max-width: 700px) {
    .hero {
        border-radius: 18px;
        margin-top: 16px;
        padding-bottom: 0;
    }
    
    .hero-title {
        font-size: 30px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 16px;
    }
    .hero-logos {
        gap: 10px;
        padding-top: 12px;
        margin-bottom: 0;
    }
}
