
.planes-landing {
    --bg: #f6f9fb;
    --bg-2: #ffffff;
    --panel: rgba(255, 255, 255, 0.96);
    --panel-border: rgba(15, 42, 57, 0.08);
    --text: #102331;
    --muted: #4d6572;
    --brand-blue: #0367c2;
    --brand-green: #97b129;
    --brand-red: #e53935;
    --brand-orange: #f59a1a;
    --brand-cyan: #21b6c7;
    --brand-dark: #0b2230;
    --accent: #0367c2;
    --accent-2: #21b6c7;
    background: var(--bg);
    margin-top: 90px;
}

.planes-hero {
    display: none;
}

.planes-banner {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    border-radius: 0 0 32px 32px;
    background: #0b2230;
    box-shadow: 0 20px 48px rgba(15, 42, 57, 0.18);
}

.planes-banner picture {
    display: block;
}

.planes-banner img {
    width: 100%;
    height: clamp(280px, 38vw, 460px);
    object-fit: cover;
    display: block;
    filter: saturate(1.02) contrast(1.02);
}

.planes-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 26, 36, 0.08) 0%, rgba(7, 26, 36, 0.64) 100%);
}

.planes-banner-copy {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 32px));
    z-index: 1;
    color: #fff;
}

.planes-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
}

.planes-banner-copy h1 {
    margin: 16px 0 10px;
    font-size: clamp(2.2rem, 4.8vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 11ch;
    color: #fff;
}

.planes-banner-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.planes-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.planes-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.planes-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.planes-btn:hover {
    transform: translateY(-1px);
}

.planes-btn.primary {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 18px 28px rgba(3, 103, 194, 0.22);
}

.planes-btn.secondary {
    background: var(--brand-green);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    box-shadow: 0 18px 28px rgba(151, 177, 41, 0.22);
}

.planes-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
}

.planes-stat {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 42, 57, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(15, 42, 57, 0.06);
}

.planes-stat strong {
    display: block;
    font-size: 1.45rem;
    color: #102331;
}

.planes-stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

.planes-nav {
    padding: 26px 0 8px;
    background: #f6f9fb;
}

.planes-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.planes-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: #163042;
    text-decoration: none;
    border: 1px solid rgba(9, 39, 55, 0.08);
    box-shadow: 0 8px 20px rgba(9, 39, 55, 0.06);
    font-weight: 700;
}

.planes-section {
    padding: 26px 0 72px;
    background: #f6f9fb;
}

.planes-section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 20px;
}

.planes-section-header h2 {
    margin: 0;
    color: #102331;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.planes-section-header p {
    margin: 0;
    width: 100%;
    color: #4d6572;
    line-height: 1.7;
}

.planes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.plane-card {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 42, 57, 0.1);
    border: 1px solid rgba(15, 95, 112, 0.12);
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    will-change: box-shadow, border-color;
    isolation: isolate;
    position: relative;
}

.plane-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-blue);
    pointer-events: none;
}

.plane-card:hover {
    box-shadow: 0 30px 70px rgba(15, 42, 57, 0.18);
    border-color: rgba(15, 95, 112, 0.18);
}

.plane-card.featured {
    grid-column: auto;
}

.plane-card-media {
    position: relative;
    background: #0b2230;
    overflow: hidden;
    height: var(--plane-media-height, auto);
}

.plane-card-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease;
}

.plane-card:hover .plane-card-media img {
    transform: scale(1.04);
}

.plane-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 34, 48, 0.18);
}

.plane-card-badges {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 1;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.plane-badge {
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--brand-dark);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 18px rgba(11, 34, 48, 0.12);
}

.plane-badge:first-child {
    background: var(--brand-blue);
}

.plane-badge:last-child {
    background: var(--brand-orange);
}

.plane-card-body {
    padding: 24px;
}

.plane-card-body h3 {
    margin: 0 0 10px;
    color: #102331;
    font-size: 1.7rem;
    line-height: 1.1;
}

.plane-summary {
    color: #4a6573;
    line-height: 1.7;
    margin-bottom: 18px;
}

.plane-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.plane-list li {
    position: relative;
    padding-left: 18px;
    color: #26404d;
    line-height: 1.55;
}

.plane-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(33, 182, 199, 0.14);
}

.plane-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 95, 112, 0.1);
}

.plane-note {
    color: #587381;
    font-size: 0.92rem;
}

.plane-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--brand-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
    box-shadow: 0 14px 24px rgba(3, 103, 194, 0.18);
}

.plane-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 18px 28px rgba(3, 103, 194, 0.24);
    color: #fff;
}

.plane-card.featured .plane-card-media {
    height: var(--plane-media-height, auto);
}

.plane-card:nth-child(even) .plane-card-media {
    order: 2;
}

.plane-card:nth-child(even) .plane-card-body {
    order: 1;
}

.planes-bottom {
    padding: 0 0 72px;
    background: #f6f9fb;
}

.planes-bottom-box {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #102331, #0f5f70);
    color: #fff;
    box-shadow: 0 24px 60px rgba(15, 42, 57, 0.15);
}

.planes-bottom-box h2 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.planes-bottom-box p {
    margin: 0;
    max-width: 880px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

@media (max-width: 992px) {
    .planes-stats {
        grid-template-columns: 1fr;
    }

    .plane-card {
        grid-template-columns: 1fr;
    }

    .planes-section-header {
        align-items: start;
        flex-direction: column;
    }

    .plane-card:nth-child(even) .plane-card-media,
    .plane-card:nth-child(even) .plane-card-body {
        order: initial;
    }

    .plane-card-media {
        height: auto !important;
        min-height: 220px;
    }

    .plane-card-media img {
        height: auto;
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .planes-banner img {
        height: 320px;
    }

    .planes-banner-copy {
        bottom: 18px;
    }

    .planes-banner-copy p {
        font-size: 1rem;
    }

    .plane-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .plane-link {
        width: 100%;
    }
}


header .nav-container nav ul>li>a {
    color: #ffffff !important;
}
