.services {
    position: relative;

    width: 100%;

    padding: clamp(5rem, 10vw, 9rem)
             clamp(1.5rem, 6vw, 6rem);

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8F5EE 100%
        );

    overflow: hidden;
}


.services__header {
    max-width: 760px;

    margin: 0 auto 4rem;

    text-align: center;
}


.services__eyebrow {
    display: inline-block;

    margin-bottom: 1.2rem;

    color: #C9A227;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


.services__header h2 {
    margin: 0;

    color: #0B1B33;

    font-size: clamp(2.5rem, 5vw, 4.8rem);

    line-height: 1;

    letter-spacing: -0.045em;

    font-weight: 800;
}


.services__header h2 span {
    color: #C9A227;
}


.services__header p {
    max-width: 620px;

    margin: 1.5rem auto 0;

    color: #4A4A4A;

    font-size: clamp(1rem, 1.4vw, 1.15rem);

    line-height: 1.7;
}


.services__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1.25rem;

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


.service-card {
    min-width: 0;

    padding: 2.5rem;

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

    border: 1px solid rgba(11, 27, 51, 0.08);

    border-radius: 24px;

    display: flex;

    flex-direction: column;

    box-shadow:
        0 15px 40px rgba(11, 27, 51, 0.06);

    backdrop-filter: blur(8px);
}


.service-card__icon {
    width: 52px;
    height: 52px;

    display: flex;

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

    margin-bottom: 2rem;

    color: #C9A227;

    background: rgba(201, 162, 39, 0.1);

    border: 1px solid rgba(201, 162, 39, 0.18);

    border-radius: 15px;

    font-size: 1.3rem;
}


.service-card h3 {
    margin: 0;

    color: #0B1B33;

    font-size: 1.55rem;

    line-height: 1.2;

    letter-spacing: -0.02em;

    font-weight: 800;
}


.service-card p {
    margin-top: 1rem;

    color: #4A4A4A;

    font-size: 0.95rem;

    line-height: 1.6;
}


.service-card__link {
    margin-top: auto;

    padding-top: 2rem;

    color: #0B1B33;

    text-decoration: none;

    font-weight: 800;

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;
}


.service-card__link span {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {

    .services {
        padding:
            5rem 2rem;
    }

    .services__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 1rem;
    }

}

@media (max-width: 600px) {

    .services {
        padding:
            4rem 1rem;
    }

    .services__header {
        margin-bottom: 2.5rem;
    }

    .services__header h2 {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .services__header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .services__grid {
        grid-template-columns: 1fr;

        gap: 1rem;
    }

    .service-card {
        padding: 1.75rem;

        border-radius: 20px;
    }

}

.services {
    position: relative;
    z-index: 1;
}

.service-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(201, 162, 39, 0.35);

    box-shadow:
        0 25px 55px rgba(11, 27, 51, 0.12),
        0 0 25px rgba(201, 162, 39, 0.08);
}

.service-card__icon {
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card:hover .service-card__icon {
    transform: translateY(-3px);

    background: rgba(201, 162, 39, 0.16);

    box-shadow:
        0 8px 20px rgba(201, 162, 39, 0.12);
}

.service-card__link span {
    display: inline-block;

    transition:
        transform 0.3s ease;
}

.service-card:hover .service-card__link span {
    transform: translateX(5px);
}

@media (hover: hover) and (pointer: fine) {

    .service-card:hover {
        transform: translateY(-8px);

        border-color: rgba(201, 162, 39, 0.35);

        box-shadow:
            0 25px 55px rgba(11, 27, 51, 0.12),
            0 0 25px rgba(201, 162, 39, 0.08);
    }

    .service-card:hover .service-card__icon {
        transform: translateY(-3px);

        background: rgba(201, 162, 39, 0.16);

        box-shadow:
            0 8px 20px rgba(201, 162, 39, 0.12);
    }

    .service-card:hover .service-card__link span {
        transform: translateX(5px);
    }

}

.services__header h2 span {
    color: #C9A227;

    transition:
        transform 0.3s ease,
        text-shadow 0.3s ease,
        filter 0.3s ease;

    display: inline-block;
}

@media (hover: hover) and (pointer: fine) {

    .services__header h2 span:hover {
        color: #C9A227;

        transform: translateY(-2px);

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

        filter: brightness(1.12);
    }

}

.service-card__icon svg {
    width: 26px;
    height: 26px;

    fill: none;

    stroke: #C9A227;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 0.35s ease,
        stroke 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {

    .service-card:hover .service-card__icon svg {
        transform: scale(1.08);
    }

}

@media (max-width: 1024px) {

    .services {
        padding:
            6rem 2rem;
    }

    .services__header {
        max-width: 700px;

        margin-bottom: 3rem;
    }

    .services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 1.25rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card__icon {
        width: 50px;
        height: 50px;

        margin-bottom: 1.5rem;
    }

}

@media (max-width: 600px) {

    .services {
        padding:
            4.5rem 1rem;
    }

    .services__header {
        margin-bottom: 2.5rem;
    }

    .services__header h2 {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .services__header p {
        max-width: 340px;

        font-size: 0.95rem;

        line-height: 1.6;
    }

    .services__grid {
        grid-template-columns: 1fr;

        gap: 1rem;
    }

    .service-card {
        padding: 1.75rem;

        border-radius: 20px;
    }

    .service-card__icon {
        width: 48px;
        height: 48px;

        margin-bottom: 1.25rem;
    }

    .service-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card__link {
        padding-top: 1.5rem;
    }

}

.why-very {
    position: relative;

    width: 100%;
    padding: clamp(6rem, 11vw, 10rem)
             clamp(1.5rem, 7vw, 7rem);

    background: #0B1B33;
    color: #FFFFFF;

    overflow: hidden;
}

.why-very__content {
    width: min(100%, 700px);

    position: relative;
    z-index: 2;
}

.why-very__eyebrow {
    display: inline-block;

    margin-bottom: 1.2rem;

    color: #C9A227;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.why-very__content h2 {
    margin: 0;

    font-size: clamp(2.8rem, 6vw, 5.5rem);

    line-height: 0.98;

    letter-spacing: -0.045em;

    font-weight: 800;
}

.why-very__content h2 span {
    color: #C9A227;
}

.why-very__content p {
    max-width: 600px;

    margin-top: 2rem;

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

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

    line-height: 1.7;
}

.why-very__visual {
    position: absolute;

    top: 50%;
    right: clamp(2rem, 8vw, 9rem);

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 1rem;
}

.why-very__mark {
    width: clamp(180px, 20vw, 300px);
    aspect-ratio: 1;

    display: flex;

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

    border: 1px solid rgba(201, 162, 39, 0.35);

    border-radius: 50%;

    color: #C9A227;

    font-size: clamp(5rem, 10vw, 9rem);

    font-weight: 800;

    line-height: 1;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 39, 0.08),
            transparent 70%
        );
}

.why-very__visual > span {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.25em;
}

.why-very__principles {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 3rem;

    margin-top: clamp(6rem, 10vw, 9rem);

    padding-top: 2.5rem;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.principle > span {
    color: #C9A227;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.15em;
}

.principle h3 {
    margin-top: 1rem;

    color: #FFFFFF;

    font-size: 1.5rem;

    font-weight: 800;
}

.principle p {
    max-width: 260px;

    margin-top: 0.7rem;

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

    line-height: 1.6;
}

@media (max-width: 600px) {

    .why-very {
        padding:
            5rem 1.25rem;
    }

    .why-very__content h2 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .why-very__content p {
        margin-top: 1.5rem;

        font-size: 0.95rem;
    }

    .why-very__visual {
        position: relative;

        top: auto;
        right: auto;

        transform: none;

        margin: 4rem auto 0;

        opacity: 1;
    }

    .why-very__mark {
        width: 180px;
    }

    .why-very__principles {
        grid-template-columns: 1fr;

        gap: 2rem;

        margin-top: 5rem;
    }

    .principle p {
        max-width: 340px;
    }

}

.principle {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.principle.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process {
    position: relative;

    width: 100%;
    padding:
        clamp(6rem, 11vw, 10rem)
        clamp(1.5rem, 7vw, 7rem);

    background: #F8F5EE;

    color: #0B1B33;

    overflow: hidden;
}

.process__header {
    max-width: 700px;

    margin-bottom: clamp(5rem, 9vw, 8rem);
}

.process__eyebrow {
    display: inline-block;

    margin-bottom: 1.2rem;

    color: #C9A227;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.process__header h2 {
    margin: 0;

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

    line-height: 0.98;

    letter-spacing: -0.045em;

    font-weight: 800;
}

.process__header h2 span {
    color: #C9A227;
}

.process__header p {
    max-width: 600px;

    margin-top: 2rem;

    color: rgba(11, 27, 51, 0.65);

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

    line-height: 1.7;
}

.process__steps {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 2rem;
}

.process-step {
    position: relative;

    padding-top: 3rem;
}

.process-step__number {
    display: inline-flex;

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

    width: 52px;
    height: 52px;

    margin-bottom: 2rem;

    border-radius: 50%;

    background: #0B1B33;

    color: #C9A227;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.05em;
}

.process-step h3 {
    margin: 0;

    color: #0B1B33;

    font-size: 1.5rem;

    font-weight: 800;
}

.process-step p {
    max-width: 250px;

    margin-top: 0.8rem;

    color: rgba(11, 27, 51, 0.6);

    line-height: 1.6;
}

.process__steps::before {
    content: "";

    position: absolute;

    top: calc(3rem + 26px);

    left: 26px;
    right: 26px;

    height: 1px;

    background: rgba(11, 27, 51, 0.12);

    z-index: 0;
}

.process-step__number {
    position: relative;

    z-index: 1;
}

@media (max-width: 1024px) {

    .process {
        padding:
            6rem 2rem;
    }

    .process__steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 4rem 2rem;
    }

    .process__steps::before {
        display: none;
    }

}

@media (max-width: 600px) {

    .process {
        padding:
            5rem 1.25rem;
    }

    .process__header h2 {
        font-size:
            clamp(2.6rem, 12vw, 3.5rem);
    }

    .process__header p {
        font-size: 0.95rem;
    }

    .process__steps {
        grid-template-columns: 1fr;

        gap: 3rem;
    }

    .process-step {
        padding-top: 0;
    }

    .process-step__number {
        width: 48px;
        height: 48px;

        margin-bottom: 1.25rem;
    }

}

.process__progress {
    position: absolute;

    top: calc(3rem + 26px);

    left: 26px;

    width: 0;

    height: 2px;

    background: #C9A227;

    z-index: 0;

    transition:
        width 1.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.process__steps::before {
    content: "";

    position: absolute;

    top: calc(3rem + 26px);

    left: 26px;
    right: 26px;

    height: 1px;

    background: rgba(11, 27, 51, 0.12);

    z-index: 0;
}

.process-step {
    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.process.is-visible .process-step {
    opacity: 1;

    transform: translateY(0);
}

.process.is-visible .process-step:nth-child(2) {
    transition-delay: 0.25s;
}

.process.is-visible .process-step:nth-child(3) {
    transition-delay: 0.5s;
}

.process.is-visible .process-step:nth-child(4) {
    transition-delay: 0.75s;
}

@media (max-width: 1024px) {

    .process__progress {
        display: none;
    }

}

.process-step__number {
    transition:
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.process-step.is-active .process-step__number {
    background: #C9A227;
    color: #0B1B33;

    box-shadow:
        0 0 0 6px rgba(201, 162, 39, 0.12),
        0 8px 20px rgba(201, 162, 39, 0.18);

    transform: scale(1.05);
}

.ready {
    position: relative;

    width: 100%;
    min-height: 70vh;

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

    padding:
        clamp(6rem, 12vw, 10rem)
        1.5rem;

    background: #0B1B33;
    color: #FFFFFF;

    overflow: hidden;
}

.ready__content {
    position: relative;
    z-index: 2;

    width: min(100%, 850px);

    text-align: center;
}

.ready__eyebrow {
    display: inline-block;

    margin-bottom: 1.5rem;

    color: #C9A227;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.25em;
}

.ready__content h2 {
    margin: 0;

    font-size: clamp(3.2rem, 8vw, 7rem);

    line-height: 0.95;

    letter-spacing: -0.05em;

    font-weight: 800;
}

.ready__content h2 span {
    display: block;

    color: #C9A227;
}

.ready__content p {
    width: min(100%, 550px);

    margin: 2rem auto 0;

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

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

    line-height: 1.7;
}

.ready__button {
    display: inline-flex;

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

    gap: 0.75rem;

    margin-top: 2.5rem;

    padding: 1rem 1.5rem;

    border: 1px solid #C9A227;

    border-radius: 999px;

    background: #C9A227;

    color: #0B1B33;

    font-size: 0.9rem;

    font-weight: 800;

    text-decoration: none;

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

.ready__button span {
    font-size: 1.1rem;

    transition:
        transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {

    .ready__button:hover {
        transform: translateY(-3px);

        box-shadow:
            0 12px 30px rgba(201, 162, 39, 0.2);
    }

    .ready__button:hover span {
        transform: translate(3px, -3px);
    }

}

.ready::before {
    content: "";

    position: absolute;

    width: min(60vw, 700px);
    aspect-ratio: 1;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 39, 0.12) 0%,
            rgba(201, 162, 39, 0.04) 35%,
            transparent 70%
        );

    pointer-events: none;
}

.ready::after {
    content: "";

    position: absolute;

    width: min(45vw, 550px);
    aspect-ratio: 1;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(201, 162, 39, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

@media (max-width: 600px) {

    .ready {
        min-height: 75vh;

        padding:
            5rem 1.25rem;
    }

    .ready__content h2 {
        font-size:
            clamp(2.8rem, 13vw, 4rem);
    }

    .ready__content p {
        margin-top: 1.5rem;

        font-size: 0.95rem;
    }

    .ready__button {
        margin-top: 2rem;

        padding:
            0.9rem 1.35rem;
    }

    .ready::before {
        width: 130vw;
    }

    .ready::after {
        width: 95vw;
    }

}

.ready__eyebrow,
.ready__content h2,
.ready__content p,
.ready__button {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.ready.is-visible .ready__eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.ready.is-visible .ready__content h2 {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.15s;
}

.ready.is-visible .ready__content p {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.3s;
}

.ready.is-visible .ready__button {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.45s;
}