/* ══════════════════════════════════════════
     SHARED UTILITIES · za-Opportunities
  ══════════════════════════════════════════ */
.za-Opp-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1abc9c;
    margin-bottom: 12px;
}

.za-Opp-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #1abc9c, #ffc857);
    border-radius: 2px;
    margin: 16px 0 28px;
}

.za-Opp-headline-dark {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: #041058;
    margin-bottom: 0;
}

.za-Opp-headline-light {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0;
}

.za-Opp-headline-dark span,
.za-Opp-headline-light span {
    color: #ffc857;
}

.za-Opp-body-dark {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.za-Opp-body-light {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}

.za-Opp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s;
}

.za-Opp-btn-teal {
    background: transparent;
    color: #1abc9c;
    border: 1.5px solid #1abc9c;
}
.za-Opp-btn-teal:hover {
    background: #1abc9c;
    color: #fff;
}

.za-Opp-btn-gold {
    background: transparent;
    color: #c9920a;
    border: 1.5px solid #ffc857;
}
.za-Opp-btn-gold:hover {
    background: #ffc857;
    color: #041058;
}

.za-Opp-btn-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.za-Opp-btn-white:hover {
    background: #fff;
    color: #041058;
}

.za-Opp-btn-dark {
    background: transparent;
    color: #041058;
    border: 1.5px solid #041058;
}
.za-Opp-btn-dark:hover {
    background: #041058;
    color: #fff;
}

/* ══════════════════════════════════════════
     SECTION 1 · HERO · Tag Line + Benefits
  ══════════════════════════════════════════ */
.za-Opp-hero {
    background: #362101;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.za-Opp-hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.za-Opp-hero-glow1 {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(26, 188, 156, 0.15) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.za-Opp-hero-glow2 {
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 200, 87, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.za-Opp-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 48px 56px;
}

/* image panel */
.za-Opp-hero-img-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 650px;
}

.za-Opp-hero-img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    display: block;
}

.za-Opp-hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #362101 0%, transparent 40%);
}

/* Quote */
.za-Opp-quote {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 36px;
    position: relative;
    padding-left: 24px;
}

.za-Opp-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: linear-gradient(to bottom, #1abc9c, #ffc857);
    border-radius: 2px;
}

/* Benefit grid */
.za-Opp-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
}

.za-Opp-benefit {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition:
        border-color 0.22s,
        background 0.22s;
}

.za-Opp-benefit:hover {
    border-color: rgba(26, 188, 156, 0.35);
    background: rgba(26, 188, 156, 0.07);
}

.za-Opp-benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.za-Opp-benefit-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.3;
}

.za-Opp-benefit-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* ══════════════════════════════════════════
     SECTION 2 · LIGHT · How Z-Axis Empowers Youth
  ══════════════════════════════════════════ */
.za-Opp-s2 {
    background: #f8f9fa;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.za-Opp-s2-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #041058 0%, #1abc9c 50%, #ffc857 100%);
}

.za-Opp-s2-circle {
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(4, 16, 88, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Split layout: image left, text right */
.za-Opp-split-img {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 360px;
}

.za-Opp-split-img img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.za-Opp-split-img:hover img {
    transform: scale(1.03);
}

/* Highlight callout */
.za-Opp-callout {
    border-left: 3px solid #1abc9c;
    background: rgba(26, 188, 156, 0.06);
    border-radius: 0 10px 10px 0;
    padding: 18px 20px;
    font-size: 16px;
    color: #041058;
    font-weight: 600;
    line-height: 1.6;
    margin: 20px 0;
}

/* Stat pills */
.za-Opp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.za-Opp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(4, 16, 88, 0.1);
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #041058;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.za-Opp-pill:hover {
    border-color: #1abc9c;
    box-shadow: 0 3px 10px rgba(26, 188, 156, 0.15);
}

.za-Opp-pill i {
    color: #1abc9c;
    font-size: 13px;
}

/* Bottom banner inside section */
.za-Opp-tag-banner {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    background: #041058;
    border-radius: 14px;
    padding: 24px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
    overflow: hidden;
}

.za-Opp-tag-banner span {
    color: #ffc857;
}

.za-Opp-tag-banner::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(26, 188, 156, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* ══════════════════════════════════════════
     SECTION 3 · DARK · How Z-Axis Empowers Women
  ══════════════════════════════════════════ */
.za-Opp-s3 {
    background: #041058;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.za-Opp-s3-glow1 {
    position: absolute;
    top: -100px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(26, 188, 156, 0.12) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.za-Opp-s3-glow2 {
    position: absolute;
    bottom: -60px;
    left: 15%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 200, 87, 0.07) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.za-Opp-s3-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Role cards for women section */
.za-Opp-role-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px 20px;
    height: 100%;
    transition:
        transform 0.25s,
        border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.za-Opp-role-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    border-radius: 14px;
    object-position: 0px 28%;
}

.za-Opp-role-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 188, 156, 0.35);
}

.za-Opp-role-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.za-Opp-role-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.za-Opp-role-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* Growth cycle bar */
.za-Opp-cycle {
    position: relative;
    z-index: 1;
    margin-top: 0px;
    background: rgba(255, 200, 87, 0.07);
    border: 1px solid rgba(255, 200, 87, 0.2);
    border-radius: 14px;
    padding: 24px 28px;
}

.za-Opp-cycle-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffc857;
    margin-bottom: 10px;
}

.za-Opp-cycle-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

/* Commitment block */
.za-Opp-commitment {
    position: relative;
    z-index: 1;
    margin-top: 0px;
    background: rgba(26, 188, 156, 0.07);
    border: 1px solid rgba(26, 188, 156, 0.2);
    border-radius: 14px;
    padding: 24px 28px;
}

.za-Opp-commitment-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1abc9c;
    margin-bottom: 10px;
}

.za-Opp-commitment-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ══════════════════════════════════════════
     SECTION 4 · LIGHT · How Z-Axis Empowers Retired Professionals
  ══════════════════════════════════════════ */
.za-Opp-s4 {
    background: #fff;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.za-Opp-s4-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23041058' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Opportunities two-col */
.za-Opp-oppty {
    background: #f8f9fa;
    border: 1px solid rgba(4, 16, 88, 0.07);
    border-radius: 14px;
    padding: 22px 20px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition:
        border-color 0.22s,
        box-shadow 0.22s;
}

.za-Opp-oppty:hover {
    border-color: rgba(26, 188, 156, 0.3);
    box-shadow: 0 6px 20px rgba(4, 16, 88, 0.06);
}

.za-Opp-oppty-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.za-Opp-oppty-title {
    font-size: 17px;
    font-weight: 700;
    color: #041058;
    margin-bottom: 6px;
    line-height: 1.3;
}

.za-Opp-oppty-desc {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Benefit checklist for retired */
.za-Opp-retlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

.za-Opp-retlist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: 1px solid rgba(4, 16, 88, 0.07);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    color: #041058;
    font-weight: 500;
    transition: border-color 0.2s;
}

.za-Opp-retlist-item:hover {
    border-color: rgba(26, 188, 156, 0.3);
}
.za-Opp-retlist-item i {
    color: #1abc9c;
    font-size: 13px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
     SECTION 5 · DARK · CTA / Join Community
  ══════════════════════════════════════════ */
.za-Opp-s5 {
    background: #050012;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.za-Opp-s5-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(26, 188, 156, 0.13) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.za-Opp-s5-glow2 {
    position: absolute;
    bottom: -60px;
    left: 5%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 200, 87, 0.08) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.za-Opp-s5-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Final CTA block */
.za-Opp-final-cta {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.za-Opp-final-quote {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 32px;
    position: relative;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
}

.za-Opp-final-quote::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    left: 24px;
    font-size: 80px;
    color: #1abc9c;
    opacity: 0.3;
    line-height: 1;
    font-family: Georgia, serif;
}

/* Responsive */
@media (max-width: 767px) {
    .za-Opp-hero-content,
    .za-Opp-s2,
    .za-Opp-s3,
    .za-Opp-s4,
    .za-Opp-s5 {
        padding: 56px 20px;
    }

    .za-Opp-headline-dark,
    .za-Opp-headline-light {
        font-size: 22px;
    }

    .za-Opp-benefits {
        grid-template-columns: 1fr;
    }
    .za-Opp-retlist {
        grid-template-columns: 1fr;
    }

    .za-Opp-quote {
        font-size: 18px;
    }
    .za-Opp-final-quote {
        font-size: 18px;
        padding: 22px 20px;
    }

    .za-Opp-hero-img-wrap {
        min-height: 240px;
    }
    .za-Opp-hero-img {
        min-height: 240px;
    }
    .za-Opp-split-img {
        min-height: 240px;
    }
    .za-Opp-split-img img {
        min-height: 240px;
    }
}
