/* ============================================
   Home Voyage — narrativa marítimo-industrial
   Cairo headers · Open Sans body · brand colors
   ============================================ */

.page-index.is-home {
    background: #061a2e;
}

.page-index .site-footer .footer-main {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---- Shared voyage ---- */
.voyage-section {
    position: relative;
}

.voyage-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.voyage-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--highlight);
    margin-bottom: 16px;
}

.voyage-kicker::before {
    content: '';
    width: 28px;
    height: 2px;
    background: currentColor;
}

.voyage-kicker--light { color: rgba(255, 255, 255, 0.7); }
.voyage-kicker--light::before { background: var(--highlight); color: inherit; }

/* ============================================
   ACTO 0 — Hero
   ============================================ */
.voyage-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-h) + 48px) 0 72px;
    overflow: hidden;
    color: #fff;
}

.voyage-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.voyage-hero__img {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    animation: voyageKen 28s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes voyageKen {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.08) translate(-1.5%, -1%); }
}

.voyage-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6, 26, 46, 0.35) 0%, rgba(6, 26, 46, 0.2) 35%, rgba(6, 26, 46, 0.92) 100%),
        linear-gradient(90deg, rgba(6, 26, 46, 0.55) 0%, transparent 60%);
}

.voyage-hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.voyage-hero__brand {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 7.5vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 20px;
}

.voyage-hero__title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    max-width: 36ch;
    margin-bottom: 14px;
}

.voyage-hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 42ch;
    margin-bottom: 32px;
}

.voyage-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.voyage-hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: 'Cairo', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.voyage-hero__scroll i {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--highlight), transparent);
    animation: voyagePulse 2s ease-in-out infinite;
}

@keyframes voyagePulse {
    0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Capabilities (Ohio Demo 31 inspired)
   ============================================ */
.voyage-caps {
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(26, 159, 217, 0.08), transparent 50%),
        #f0f4f8;
    padding: clamp(80px, 12vw, 140px) 0;
    color: var(--text);
}

.voyage-caps__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.voyage-caps__heading h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: 0;
    max-width: 16ch;
}

.voyage-caps__all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(6, 26, 46, 0.2);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.voyage-caps__all > svg {
    width: 16px;
    height: 16px;
    transition: transform 0.35s ease;
}

.voyage-caps__all:hover {
    color: var(--highlight);
    border-color: var(--highlight);
}

.voyage-caps__all:hover > svg {
    transform: translateX(4px);
}

.voyage-caps__rule {
    height: 1px;
    background: rgba(6, 26, 46, 0.1);
    margin-bottom: 32px;
}

.voyage-caps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.caps-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    min-height: 420px;
    background: #061a2e;
    box-shadow: 0 16px 48px rgba(6, 26, 46, 0.12);
    transform-style: preserve-3d;
    transition: box-shadow 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.caps-card:hover {
    box-shadow: 0 24px 64px rgba(6, 26, 46, 0.2);
}

.caps-card__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.caps-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.caps-card:hover .caps-card__media img {
    transform: scale(1.1);
}

.caps-card__overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 24px;
    background: linear-gradient(180deg, rgba(6, 26, 46, 0.25) 0%, rgba(6, 26, 46, 0.55) 45%, rgba(6, 26, 46, 0.92) 100%);
    color: #fff;
}

.caps-card__tag {
    display: inline-block;
    font-family: 'Cairo', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.caps-card__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    max-width: 10ch;
}

.caps-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.caps-card__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 28ch;
    transform: translateY(8px);
    opacity: 0.85;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.caps-card:hover .caps-card__desc {
    transform: translateY(0);
    opacity: 1;
}

.caps-card__btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.caps-card__btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.35s ease;
}

.caps-card:hover .caps-card__btn {
    background: var(--highlight);
    border-color: var(--highlight);
    transform: scale(1.06);
}

.caps-card:hover .caps-card__btn svg {
    color: #fff;
    transform: rotate(90deg);
}

@media (max-width: 960px) {
    .voyage-caps__grid {
        grid-template-columns: 1fr;
    }

    .caps-card,
    .caps-card__overlay {
        min-height: 360px;
    }

    .voyage-caps__head {
        align-items: flex-start;
    }
}

@media (hover: none) {
    .caps-card__desc {
        transform: none;
        opacity: 1;
    }
}

/* ============================================
   About — Tekmino "About Our Company" layout
   ============================================ */
.voyage-about {
    background:
        radial-gradient(ellipse 55% 45% at 90% 10%, rgba(26, 159, 217, 0.07), transparent 55%),
        #fff;
    padding: clamp(80px, 11vw, 130px) 0;
    color: var(--text);
}

.voyage-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 64px);
    align-items: stretch;
}

.voyage-about__heading {
    margin-bottom: clamp(40px, 7vw, 88px);
}

.voyage-about__heading h2 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin: 0;
    max-width: 18ch;
}

.voyage-about__img {
    position: relative;
    z-index: 1;
}

.voyage-about__img > img {
    display: block;
    width: 100%;
    min-height: 350px;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.voyage-about__reviews {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 22px 40px;
    max-width: min(100%, 320px);
    color: #fff;
}

.voyage-about__reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 0 12px 0 28px;
    z-index: -1;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
}

.voyage-about__reviews ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.voyage-about__reviews li {
    margin-left: -14px;
    line-height: 0;
}

.voyage-about__reviews li:first-child {
    margin-left: 0;
}

.voyage-about__reviews li img,
.voyage-about__reviews li span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    background: #fff;
    padding: 2px;
    box-sizing: border-box;
}

.voyage-about__reviews li span {
    background: var(--highlight);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.voyage-about__reviews li span svg {
    width: 16px;
    height: 16px;
}

.voyage-about__reviews p {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
    max-width: 11.5rem;
}

.voyage-about__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 36px;
}

.voyage-about__inner {
    max-width: 532px;
    width: 100%;
    margin-left: auto;
}

.voyage-about__desc {
    margin: 0;
    color: rgba(6, 26, 46, 0.68);
    font-size: 1.02rem;
    line-height: 1.7;
}

.voyage-about__list-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 28px;
}

.voyage-about__checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 220px;
}

.voyage-about__checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.45;
}

.voyage-about__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    color: var(--highlight);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.voyage-about__check svg {
    width: 18px;
    height: 18px;
}

.voyage-about__circle {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--highlight);
    flex-shrink: 0;
    display: block;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 14px 36px rgba(225, 94, 4, 0.3);
}

.voyage-about__circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(225, 94, 4, 0.4);
}

.voyage-about__circle-text {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 122px;
    height: 122px;
    margin: -61px 0 0 -61px;
    animation: aboutTextRotate 18s linear infinite;
}

.voyage-about__circle-text text {
    fill: rgba(255, 255, 255, 0.92);
    font-family: 'Cairo', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.voyage-about__circle-icon {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: transform 0.35s ease;
}

.voyage-about__circle:hover .voyage-about__circle-icon {
    transform: rotate(0deg);
}

.voyage-about__circle-icon svg {
    width: 22px;
    height: 22px;
}

@keyframes aboutTextRotate {
    to { transform: rotate(360deg); }
}

.voyage-about__counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.voyage-about__countup {
    border: 1px solid rgba(6, 26, 46, 0.1);
    background: #f4f7fa;
    border-radius: 10px;
    padding: 28px 24px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.voyage-about__countup:hover {
    border-color: rgba(225, 94, 4, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(6, 26, 46, 0.08);
}

.voyage-about__count-num {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    color: var(--highlight);
    margin-bottom: auto;
    padding-bottom: 28px;
}

.voyage-about__countup h3 {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

.voyage-about__countup p {
    margin: 10px 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(6, 26, 46, 0.62);
}

@media (max-width: 1100px) {
    .voyage-about__heading {
        margin-bottom: 36px;
    }

    .voyage-about__countup {
        min-height: 220px;
        padding: 24px 18px;
    }
}

@media (max-width: 960px) {
    .voyage-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .voyage-about__heading h2 {
        max-width: none;
    }

    .voyage-about__inner {
        margin-left: 0;
        max-width: none;
    }

    .voyage-about__reviews {
        max-width: min(92%, 300px);
        padding: 12px 12px 18px 28px;
    }

    .voyage-about__reviews p {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .voyage-about__counters {
        grid-template-columns: 1fr;
    }

    .voyage-about__circle {
        width: 120px;
        height: 120px;
    }

    .voyage-about__circle-text {
        width: 104px;
        height: 104px;
        margin: -52px 0 0 -52px;
    }

    .voyage-about__reviews {
        position: relative;
        right: auto;
        top: auto;
        margin-top: -28px;
        margin-left: auto;
        margin-right: 12px;
    }

    .voyage-about__reviews::before {
        border-radius: 16px;
        clip-path: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .voyage-about__circle-text {
        animation: none;
    }

    .voyage-about__countup,
    .voyage-about__circle,
    .voyage-about__circle-icon {
        transition: none;
    }
}

/* ============================================
   Services — Logiver stacked cards
   ============================================ */
.rama-svc {
    padding: 0 clamp(10px, 2vw, 28px);
    margin: clamp(40px, 6vw, 80px) 0;
}

.rama-svc__wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
    background: #061a2e;
    padding: clamp(72px, 10vw, 120px) clamp(16px, 3vw, 40px);
    color: #fff;
}

.rama-svc__decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
}

.rama-svc__decor img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rama-svc__decor--a {
    top: 96px;
    left: 96px;
    z-index: 0;
    width: min(543px, 42vw);
    aspect-ratio: 543 / 585;
    height: auto;
    border-radius: 20px;
    opacity: 1;
    /* clip-path mantiene el redondeo aunque el img tenga transform de parallax */
    clip-path: inset(0 round 20px);
    -webkit-clip-path: inset(0 round 20px);
}

.rama-svc__decor--a img {
    height: 140%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    will-change: transform;
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .rama-svc__decor--a {
        top: 15px;
        left: 15px;
        width: min(420px, 34vw);
    }

    .rama-svc__stack {
        transform: translateX(12px);
    }
}

.rama-svc__decor--b {
    left: 0;
    bottom: 0;
    width: min(420px, 38vw);
    height: min(320px, 40%);
    opacity: 0.2;
}

.rama-svc__decor--b img {
    mix-blend-mode: luminosity;
}

.rama-svc__decor--c {
    right: -20px;
    bottom: 28%;
    width: min(180px, 16vw);
    height: 180px;
    border-radius: 50%;
    opacity: 0.25;
    background: radial-gradient(circle, rgba(26, 159, 217, 0.45), transparent 70%);
}

.rama-svc__container {
    position: relative;
    z-index: 2;
    width: min(1140px, calc(100% - 48px));
    margin: 0 auto;
}

.rama-svc__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
    max-width: 820px;
    margin-left: auto;
    margin-bottom: clamp(48px, 7vw, 80px);
    gap: 24px;
}

.rama-svc__heading {
    width: 100%;
}

.rama-svc__heading .voyage-kicker {
    justify-content: flex-end;
    color: rgba(255, 255, 255, 0.7);
}

.rama-svc__heading .voyage-kicker::before {
    background: var(--highlight);
}

.rama-svc__heading h2 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 16px;
    text-align: right;
}

.rama-svc__heading p {
    margin: 0 0 8px auto;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.7;
    text-align: right;
}

.rama-svc__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--highlight);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 12px 28px rgba(225, 94, 4, 0.3);
}

.rama-svc__cta:hover {
    color: #fff;
    box-shadow: 0 16px 36px rgba(225, 94, 4, 0.4);
}

.rama-svc__cta > svg {
    width: 18px;
    height: 18px;
}

.rama-svc__stack {
    position: relative;
    transform: translateX(24px);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.rama-svc__item {
    position: relative;
    z-index: 1;
    max-width: 524px;
    margin: -140px auto 0;
    transform: translateX(var(--svc-x, 0%));
    will-change: transform;
}

.rama-svc__item:nth-child(1) {
    margin-top: 0;
    z-index: 1;
}

.rama-svc__item:nth-child(2) { z-index: 2; }
.rama-svc__item:nth-child(3) { z-index: 3; }
.rama-svc__item:nth-child(4) { z-index: 4; }
.rama-svc__item:nth-child(5) { z-index: 5; }

.rama-svc__card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 28px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 16px;
    background: #0a2f4d;
    padding: 14px 14px 14px 28px;
    box-shadow: -16px -16px 50px rgba(0, 0, 0, 0.28);
    transition: transform 0.15s linear, opacity 0.15s linear;
    will-change: transform, opacity;
}

.rama-svc__card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #04121f;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.rama-svc__item:hover {
    z-index: 10;
}

.rama-svc__item:hover .rama-svc__card::before {
    opacity: 1;
}

.rama-svc__item:hover .rama-svc__img img {
    transform: scale(1.06);
}

.rama-svc__text {
    flex: 1 1 200px;
    max-width: 260px;
    padding-top: 16px;
    padding-bottom: 12px;
}

.rama-svc__text h3 {
    margin: 0 0 22px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
}

.rama-svc__text h3 a {
    color: inherit;
}

.rama-svc__text h3 a:hover {
    color: var(--highlight);
}

.rama-svc__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rama-svc__icon svg {
    width: 40px;
    height: 40px;
}

.rama-svc__text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
}

.rama-svc__img {
    width: 168px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    align-self: stretch;
    min-height: 200px;
}

.rama-svc__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1199px) {
    .rama-svc__stack {
        transform: none;
        max-width: 560px;
        margin: 0 auto;
    }

    .rama-svc__item {
        margin-top: 0;
        margin-bottom: 22px;
        transform: none !important;
    }

    .rama-svc__card {
        opacity: 1 !important;
        transform: none !important;
    }

    .rama-svc__decor--a {
        display: none;
    }
}

@media (max-width: 960px) {
    .rama-svc__top {
        text-align: left;
        justify-content: flex-start;
        max-width: none;
        margin-left: 0;
    }

    .rama-svc__heading h2,
    .rama-svc__heading p {
        text-align: left;
    }

    .rama-svc__heading p {
        margin-left: 0;
    }

    .rama-svc__heading .voyage-kicker {
        justify-content: flex-start;
    }

    .rama-svc__card {
        padding: 18px;
        gap: 18px;
    }

    .rama-svc__text {
        max-width: none;
    }

    .rama-svc__img {
        width: 100%;
        min-height: 180px;
        max-height: 200px;
        order: -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rama-svc__card,
    .rama-svc__img img {
        transition: none;
    }

    .rama-svc__card {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   Why — Logiver about (swinging container)
   ============================================ */
@keyframes ramaWhyWave {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(2deg); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}

.rama-why {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f0f4f8;
    padding: clamp(80px, 11vw, 130px) 0 clamp(100px, 12vw, 160px);
}

.rama-why__map {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.28;
    pointer-events: none;
    max-width: min(720px, 55vw);
}

.rama-why__map img {
    display: block;
    width: 100%;
    height: auto;
}

.rama-why__swing {
    position: absolute;
    top: 0;
    left: 125px;
    z-index: 1;
    pointer-events: none;
    /* width: min(420px, 34vw); */
    width: min(620px, 44vw);
}

.rama-why__swing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 0;
    z-index: 2;
    width: 183px;
    height: 81px;
    margin: 0 auto;
    background: linear-gradient(180deg, #f0f4f8 0%, rgba(240, 244, 248, 0) 100%);
}

.rama-why__swing-img {
    transform-origin: top center;
    animation: ramaWhyWave 5s ease-in-out infinite;
}

.rama-why__swing-img img {
    display: block;
    width: 100%;
    height: auto;
}

.rama-why__inner {
    position: relative;
    z-index: 2;
}

.rama-why__title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px 24px;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.rama-why__title .voyage-kicker {
    flex: 0 0 auto;
}

.rama-why__title h2 {
    flex: 1 1 280px;
    max-width: 820px;
    margin: 0 0 0 auto;
    text-align: right;
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
    color: var(--primary);
}

.rama-why__features {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    max-width: 580px;
    margin-left: auto;
}

.rama-why__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.rama-why__item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.rama-why__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #fff;
    color: var(--highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(6, 26, 46, 0.08);
}

.rama-why__icon svg {
    width: 32px;
    height: 32px;
}

.rama-why__text h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
    color: var(--primary);
}

.rama-why__text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 42ch;
}

.rama-why__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--highlight);
    color: #fff;
    box-shadow: 0 12px 28px rgba(225, 94, 4, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rama-why__cta:hover {
    color: #fff;
    box-shadow: 0 16px 36px rgba(225, 94, 4, 0.4);
}

.rama-why__cta > svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 1399px) {
    .rama-why__swing { left: 4.5%; }
}

@media (max-width: 1199px) {
    /* .rama-why__swing { left: -12%; width: min(360px, 38vw); } */
    .rama-why__swing { left: -5%; width: min(580px, 52vw); }
}

@media (max-width: 991px) {
    /* .rama-why__swing { display: none; } */
    .rama-why__swing {
        left: 50%;
        margin-left: -150px;
        width: 300px;
    }

    .rama-why__inner {
        padding-top: 300px;
    }

    .rama-why__title h2 {
        margin-left: 0;
        text-align: left;
        max-width: none;
    }

    .rama-why__features {
        align-items: flex-start;
        max-width: none;
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rama-why__swing-img {
        animation: none;
    }
}

/* ============================================
   Case — horizontal
   ============================================ */
.rama-case {
    background: #f0f4f8;
    padding: 0 0 clamp(80px, 10vw, 120px);
}

.voyage-case {
    border-radius: 20px;
    overflow: hidden;
    background: #061a2e;
    color: #fff;
    box-shadow: 0 24px 64px rgba(6, 26, 46, 0.16);
}

.voyage-case--row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: stretch;
}

.voyage-case__media {
    aspect-ratio: auto;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.voyage-case__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 40%, rgba(6, 26, 46, 0.35) 100%);
}

.voyage-case__body {
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voyage-case__tag {
    font-family: 'Cairo', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--highlight);
    margin-bottom: 10px;
}

.voyage-case__body h3 {
    color: #fff;
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    margin-bottom: 14px;
}

.voyage-case__quote {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.voyage-case__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 22px;
    font-size: 0.9rem;
}

.voyage-case__meta strong { color: #fff; }
.voyage-case__meta span { color: rgba(255, 255, 255, 0.55); }

.voyage-case__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.voyage-case__thumb {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
    display: block;
}

.voyage-case__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.5s;
}

.voyage-case__thumb:hover img {
    opacity: 1;
    transform: scale(1.04);
}

.voyage-case__thumb span {
    position: absolute;
    left: 8px;
    bottom: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
    .voyage-case--row {
        grid-template-columns: 1fr;
    }

    .voyage-case__media {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }

    .voyage-case__media::after {
        background: linear-gradient(180deg, transparent 40%, rgba(6, 26, 46, 0.85) 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .voyage-hero__img { animation: none; }
    .voyage-reveal {
        opacity: 1;
        transform: none;
    }
    .voyage-hero__scroll i { animation: none; }
}
