/* ============================================
   WHY VOYAGER SECTION
   ============================================ */

.why-voyager {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #fff;
}

/* Optional subtle background pattern */
.why-voyager::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;

    background-image:
        linear-gradient(30deg, transparent 24%, #e8edf5 25%, #e8edf5 26%, transparent 27%),
        linear-gradient(150deg, transparent 24%, #e8edf5 25%, #e8edf5 26%, transparent 27%);

    background-size: 55px 95px;
}

.why-voyager__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    align-items: center;
    margin: 0 auto;
    padding: 0 40px;
}


/* ============================================
   IMAGE
   ============================================ */

.why-voyager__image {
    position: relative;

    /* Initial animation state */
    opacity: 0;
    transform: translateX(-180px);

    transition:
        opacity 1s ease,
        transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.why-voyager__image.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 1150px;
    overflow: hidden;
}

.image-frame img {
    display: block;
    width: 100%;
    height: 750px;
    object-fit: cover;
}


/* ============================================
   BLUE HEXAGON / ANGULAR FRAME
   ============================================ */

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 9px solid #0787df;

    /*
       Creates the angled/hexagonal appearance
    */
    clip-path: polygon(0 0,
            55% 0,
            55% 15%,
            100% 25%,
            100% 75%,
            55% 85%,
            55% 100%,
            0 100%);

    pointer-events: none;
}


/* ============================================
   CONTENT
   ============================================ */

.why-voyager__content {
    padding-left: 70px;
    max-width: 550px;
}


/* ============================================
   EACH ITEM
   ============================================ */

.why-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;

    margin-bottom: 28px;

    /* Initial state */
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.16, 1, .3, 1);
}

.why-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   STAGGERED ANIMATION
   ============================================ */

.why-item:nth-child(1) {
    transition-delay: 0.15s;
}

.why-item:nth-child(2) {
    transition-delay: 0.30s;
}

.why-item:nth-child(3) {
    transition-delay: 0.45s;
}

.why-item:nth-child(4) {
    transition-delay: 0.60s;
}


/* ============================================
   NUMBER CIRCLE
   ============================================ */

.why-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #eef5fc;
    color: #7d8792;

    font-size: 14px;
    font-weight: 600;
}


/* ============================================
   TEXT
   ============================================ */

.why-item h3 {
    margin: 0 0 8px;

    font-family: 'Sora', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;

    color: #777;
}

.why-item p {
    margin: 0;

    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.5;

    color: #777;
}

/* ============================================
   CLIENT EXCLUSIVE ACCESS
   ============================================ */

.client-access-section {
    padding: 45px 0 55px;
    background: #fff;
}

.client-access-heading {
    max-width: 1100px;
}

.client-access-heading h2 {
    margin: 0 0 12px;

    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    line-height: 1.2;
    font-weight: 700;

    color: #050b48;
}

.client-access-heading p {
    max-width: 1050px;
    margin: 0;

    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.45;

    color: #777;
}


/* ============================================
   ACCESS ITEMS
   ============================================ */

.client-access-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    margin-top: 70px;
    width: 100%;
}

.client-access-item {
    text-align: center;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.client-access-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    margin-bottom: 12px;
    color: #1595f5;
}

.client-access-icon i {
    font-size: 3.3rem;
}

.client-access-item h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 400;
    color: #555;
}

/* ============================================
   HOVER
   ============================================ */

.client-access-item {
    transition: transform 0.3s ease;
}

.client-access-item:hover {
    transform: translateY(-5px);
}

.client-access-icon i {
    transition: transform 0.3s ease;
}

.client-access-item:hover .client-access-icon i {
    transform: scale(1.08);
}


/* ============================================
   TABLET
   ============================================ */

@media (max-width: 900px) {

    .client-access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
        margin-top: 65px;
    }
}


/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 600px) {

    .client-access-section {
        padding: 40px 0;
    }

    .client-access-heading h2 {
        font-size: 1.6rem;
    }

    .client-access-heading p {
        font-size: 0.85rem;
    }

    .client-access-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px 15px;

        margin-top: 50px;
    }

    .client-access-icon i {
        font-size: 2.7rem;
    }

    .client-access-item h3 {
        font-size: 0.85rem;
    }
}

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 900px) {

    .why-voyager {
        padding: 70px 0;
    }

    .why-voyager__inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .why-voyager__image {
        margin-bottom: 50px;
    }

    .image-frame img {
        height: 500px;
    }

    .why-voyager__content {
        padding-left: 0;
        max-width: none;
    }
}


@media (max-width: 600px) {

    .why-voyager {
        padding: 50px 0;
    }

    .why-voyager__inner {
        padding: 0 18px;
    }

    .image-frame img {
        height: 380px;
    }

    .why-item {
        grid-template-columns: 34px 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }

    .why-item h3 {
        font-size: 17px;
    }

    .why-item p {
        font-size: 14px;
    }
}


/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {

    .why-voyager__image,
    .why-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}