.hero {
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;

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

    padding: 1rem clamp(1.5rem, 8vw, 8rem);

    background: linear-gradient(
        135deg,
        #F8F5EE,
        #F2EBDD
    );

    overflow: hidden;
    position: relative;

    box-sizing: border-box;
}




.hero h1 {

    font-size: clamp(3rem, 6vw, 5.8rem);

    line-height: 1.05;

    letter-spacing: -0.04em;

    font-weight: 800;

    color: #0B1B33;

    max-width: 750px;

}


.hero__highlight {
    color: #C9A227;

    display: inline-block;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        text-shadow 0.3s ease;
}

.hero__highlight:hover {
    color: #D6B33A;

    transform: translateY(-2px);

    text-shadow:
        0 0 8px rgba(201, 162, 39, 0.35),
        0 0 20px rgba(201, 162, 39, 0.2);
}


.hero p {

    margin-top: 1.8rem;

    max-width: 580px;

    font-size: clamp(1rem, 1.5vw, 1.25rem);

    line-height: 1.7;

    color: #4A4A4A;

}

.hero__buttons {

    display: flex;

    gap: 1rem;

    margin-top: 2.5rem;

}


.hero__primary,
.hero__secondary {

    padding: 1rem 2.2rem;

    border-radius: 14px;

    font-size: 1rem;

    font-weight: 800;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

    cursor: pointer;

}


.hero__primary {

    background: #0B1B33;

    color: #FFFFFF;

    box-shadow:
        0 8px 20px rgba(11,27,51,0.2);

}

.hero__primary:hover {

    transform: translateY(-4px);

    background: #132A4A;

    box-shadow:
        0 18px 35px rgba(11,27,51,0.35),
        0 0 18px rgba(201,162,39,0.25);

}



.hero__secondary {

    border: 2px solid #0B1B33;

    color: #0B1B33;

    background: transparent;

    box-shadow:
        0 6px 15px rgba(11,27,51,0.08);

}

.hero__secondary:hover {

    transform: translateY(-4px);

    background: #0B1B33;

    color: #FFFFFF;

    box-shadow:
        0 18px 35px rgba(11,27,51,0.3);

}

.hero__primary:active,
.hero__secondary:active {

    transform: translateY(-1px) scale(0.97);

}

.hero__visual {

    width: min(42vw, 600px);

}


.browser-window {
    background: white;
    border-radius: 24px;
    height: clamp(220px, 35vh, 400px);
    box-shadow: 0 30px 80px rgba(11,27,51,0.15);
}




.browser-window__top {

    height: 45px;

    border-bottom: 1px solid #eee;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding: 0 18px;

}

.browser-controls {
    display: flex;
    gap: 8px;
}


.window-button {

    width: 18px;

    height: 18px;

    border-radius: 50%;

    border: none;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    line-height: 1;

    cursor: pointer;

    .window-button {
    color: rgba(0, 0, 0, 0.45);
    }

    padding: 0;

    transition: all 0.3s ease;

}


.close {

    background: #D9534F;

}


.minimise {

    background: #C9A227;

}


.expand {

    background: #5CB85C;

}


.window-button:hover {

    transform: scale(1.15);

    filter: brightness(1.1);

}


.control {

    width:12px;

    height:12px;

    border-radius:50%;

    display:block;

}


.close {

    background:#D9534F;

}


.minimise {

    background:#C9A227;

}


.expand {

    background:#5CB85C;

}

.browser-actions {

    color:#999;

    font-size:1rem;

    opacity:0.7;

    transition:all .3s ease;

}


.browser-actions:hover {

    color:#C9A227;

    transform:scale(1.15);

}


.control {

    width:12px;

    height:12px;

    border-radius:50%;

    display:block;

}


.browser-window__content {

    display:flex;

    align-items:center;

    justify-content:center;

    height:calc(100% - 45px);

    color:#0B1B33;

    font-weight:700;

}

.hero__scroll {
    position: absolute;

    left: 50%;
    bottom: 20px;

    width: 44px;
    height: 44px;

    margin-left: -22px;

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

    color: #0B1B33;

    font-size: 1.8rem;
    text-decoration: none;

    cursor: pointer;

    z-index: 10;

    animation: heroScroll 2s ease-in-out infinite;

    transition:
        color 0.3s ease,
        filter 0.3s ease;
}

@keyframes heroScroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}

.hero__scroll:hover {

    color: #C9A227;

    filter:
        drop-shadow(0 0 8px rgba(201, 162, 39, 0.45));

}

@media (max-height: 700px) {

    .hero__scroll {
        bottom: 15px;
    }

}

.hero__primary,
.hero__secondary {

    padding: 1rem 2.2rem;

    border-radius: 14px;

    font-size: 1rem;

    font-weight: 800;

    transition: all .3s ease;

}

@media (max-width: 1025px) {

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: clamp(1rem, 4vh, 2rem);
    }

    .hero__content {
        max-width: 700px;
        transform: none;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__visual {
        width: min(90vw, 600px);
        max-width: 600px;

        flex-shrink: 0;
    }

    .browser-window {
        width: 100%;
        height: clamp(240px, 45vw, 360px);
    }

}

@media (max-height: 600px) {
    .hero h1 {
        font-size: clamp(2.2rem, 6vw, 4rem);
    }

    .hero p {
        margin-top: 1rem;
        line-height: 1.4;
    }

    .hero__buttons {
        margin-top: 1.25rem;
    }

    .browser-window {
        height: 220px;
    }

    .hero__scroll {
        bottom: 10px;
    }
}


@media (max-height: 700px) {

    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
    }

    .hero p {
        margin-top: 1rem;
        line-height: 1.5;
    }

    .hero__buttons {
        margin-top: 1.5rem;
    }

    .browser-window {
        height: 280px;
    }

    .hero__scroll {
        bottom: 10px;
    }
}

@media (max-width: 1025px) {

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;

        gap: clamp(1rem, 4vh, 2rem);
    }

    .hero__content {
        transform: none;
        max-width: 700px;
    }

    .hero__buttons {
        justify-content: center;
    }

   .hero__visual {
        width: min(90vw, 600px);
        max-width: 600px;

        flex-shrink: 0;
    }

}

.mini-site {

    width: 80%;

    height: 80%;

    background: #F8F5EE;

    border-radius: 16px;

    padding: 2rem;

    display: flex;

    flex-direction: column;

}

.mini-site__header {

    display:flex;

    justify-content:space-between;

    align-items:center;

}


.mini-logo {

    width:32px;

    height:32px;

    border-radius:50%;

    background:#0B1B33;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;

}

.mini-nav {

    display:flex;

    gap:8px;

}


.mini-nav span {

    width:35px;

    height:5px;

    background:#ddd;

    border-radius:10px;

}


.mini-site__hero {

    margin-top: 2.5rem;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.mini-site__hero h3 {

    font-size:1.8rem;

    color:#0B1B33;

}


.mini-site__hero h3 span {

    color:#C9A227;

}


.mini-site__hero p {

    font-size:.85rem;

    margin-top:1rem;

}

.mini-site__hero button {

    margin-top:1.5rem;

    padding:.5rem 1.2rem;

    border:none;

    border-radius:999px;

    background:#0B1B33;

    color:white;

}

.hero__visual {

    transition:
        transform .5s ease;

}


.hero__visual:hover {

    transform:
        translateY(-8px)
        rotate(2deg);

}

.hero__visual:hover .browser-window {

    box-shadow:
        0 40px 100px rgba(11,27,51,0.25),
        0 0 30px rgba(201,162,39,0.18);

}

.mini-site__hero button {

    margin-top: 1.5rem;

    margin-bottom: 1rem;

}

.hero__shape {
    position: absolute;

    pointer-events: none;

    z-index: 0;

    border-radius: 50%;

    filter: blur(40px);

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__shape--one {

    width: 300px;
    height: 300px;

    background: #C9A227;

    opacity: 0.25;

    top: -100px;
    right: 8%;
}

.hero__shape--two {

    width: 250px;
    height: 250px;

    background: #0B1B33;

    opacity: 0.18;

    bottom: 50px;
    left: 50px;
}

.hero__content,
.hero__visual,
.hero__scroll {

    position: relative;

    z-index: 1;

}

@media (max-width: 1025px) {

    .hero__shape {
        display: none;
    }

}

.hero__shape {
    pointer-events: none;
}

.hero__services {

    display: flex;

    align-items: center;

    gap: 1.5rem;

    margin-top: 1.5rem;

    flex-wrap: wrap;

}

.hero__service {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 0.4rem;

    color: #0B1B33;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}

.hero__service:hover {

    color: #C9A227;

    transform: translateY(-1px);

}

.hero__service::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 2px;

    background: #C9A227;

    transition: width 0.3s ease;

}

.hero__service:hover::after {

    width: 100%;

}

@media (max-width: 1025px) {

    .hero__services {

        justify-content: center;

        gap: 1rem;

    }

}


.hero__scroll {
    position: absolute;

    left: 50%;
    bottom: 24px;

    width: 44px;
    height: 44px;

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

    color: #0B1B33;

    font-size: 1.8rem;
    line-height: 1;

    text-decoration: none;

    cursor: pointer;

    z-index: 10;

    animation: heroScroll 2s ease-in-out infinite;

    transition:
        color 0.3s ease,
        filter 0.3s ease;
}

@keyframes heroScroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(7px);
    }

}

.hero__scroll:hover {
    color: #C9A227;

    filter:
        drop-shadow(0 0 8px rgba(201, 162, 39, 0.45));
}

@media (max-width: 600px) {

    .hero {
        flex-direction: column;
        justify-content: center;
        gap: 1.25rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }

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

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
        line-height: 1.05;
    }

    .hero p {
        margin-top: 1rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero__buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.7rem;
        margin-top: 1.4rem;
    }

    .hero__services {
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .hero__visual {
        width: 100%;
        max-width: 340px;
        flex-shrink: 0;
    }

    .browser-window {
        width: 100%;
        height: 190px;
        border-radius: 18px;
    }

    .browser-window__top {
        height: 36px;
        padding-left: 12px;
        gap: 6px;
    }

    .browser-window__top span {
        width: 9px;
        height: 9px;
    }

}

@media (min-width: 601px) and (max-width: 1024px) {

    .hero {
        flex-direction: column;
        justify-content: center;

        gap: 2rem;

        padding: 3rem 2.5rem;

        text-align: center;
    }

    .hero__content {
        width: 100%;
        max-width: 750px;

        transform: none;
    }

    .hero h1 {
        font-size: clamp(3rem, 7vw, 4.8rem);
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__services {
        justify-content: center;
    }

    .hero__visual {
        width: min(75vw, 600px);
        flex-shrink: 0;
    }

    .browser-window {
        width: 100%;
        height: 300px;
    }

}

@media (max-width: 600px) {

    .hero {
        background: linear-gradient(
            135deg,
            #F8F5EE,
            #F2EBDD
        );

        flex-direction: column;

        justify-content: center;

        gap: 1.25rem;

        padding: 1.5rem 1rem;

        text-align: center;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;

        transform: none;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);

        line-height: 1.05;
    }

    .hero p {
        margin-top: 1rem;

        font-size: 0.95rem;

        line-height: 1.5;
    }

    .hero__buttons {
        justify-content: center;

        flex-wrap: wrap;

        gap: 0.7rem;

        margin-top: 1.4rem;
    }

    .hero__services {
        justify-content: center;

        gap: 0.75rem;

        margin-top: 1rem;
    }

    .hero__visual {
        display: none;
    }

}

@media (max-width: 1000px) and (orientation: landscape) and (max-height: 500px) {

    .hero {
        flex-direction: row;

        align-items: center;

        justify-content: space-between;

        gap: 1.5rem;

        padding: 1rem 1.5rem;

        text-align: left;
    }

    .hero__content {
        width: 50%;
        max-width: 500px;

        transform: none;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);

        line-height: 1.05;
    }

    .hero p {
        margin-top: 0.8rem;

        font-size: 0.9rem;

        line-height: 1.4;
    }

    .hero__buttons {
        margin-top: 1.1rem;

        gap: 0.6rem;
    }

    .hero__services {
        gap: 0.7rem;

        margin-top: 0.8rem;
    }

    .hero__visual {
        width: 45%;

        max-width: 400px;

        flex-shrink: 1;
    }

    .browser-window {
        width: 100%;

        height: 190px;

        border-radius: 16px;
    }

}

@media (max-width: 1000px) and (max-height: 500px) {

    .hero__visual {
        display: none;
    }

}

.hero__changing-word {
    display: inline-block;

    min-width: 4.8ch;

    opacity: 1;

    transform: scale(1);

    transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    will-change: opacity, transform;
}

.hero__changing-word.is-changing {
    opacity: 0;

    transform: scale(0.92);
}

@media (orientation: landscape) and (max-height: 500px) {

    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero__content {
        width: 100%;
        max-width: 700px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__services {
        justify-content: center;
    }

}

/*----------------------------------------------------------------------------- 

.                          SERVICES HERO 

------------------------------------------------------------------------------*/

