/* ===================== INNER PAGE HERO - ENHANCED ===================== */

.page-hero {
    position: relative;
    width: 100%;
    min-height: 520px; /* taller */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark);
    padding: 110px 0 150px; /* extra breathing room for divider */
}

/* ── Background ── */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.30;
    filter: grayscale(20%);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.88) 45%,
        rgba(10, 22, 40, 0.55) 100%
    );
}

/* Green ambient glow (right side) */
.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.12) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

/* ── Content ── */
.page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* max-width: 780px; */
    width: 100%;
}

/* Breadcrumb */
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--accent-light);
}

.page-hero-breadcrumb .sep {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
}

.page-hero-breadcrumb .current {
    color: var(--accent-light);
    font-weight: 600;
}

/* Title */
.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.page-hero-title span {
    color: var(--accent-light);
}

/* Subtitle */
.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.70);
    margin: 0;
    max-width: 560px;
    line-height: 1.7;
    font-weight: 400;
}

/* ── Feature Bullets ── */
.page-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 32px;
    margin-top: 4px;
}

.page-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 500;
}

.page-hero-feature::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: rgba(22, 163, 74, 0.20);
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ── Buttons ── */
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--green-gradient);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.60);
}

/* ── Mini Stats Row ── */
.page-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.page-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-hero-stat strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.page-hero-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ── Bottom Shape Divider ── */
.page-hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.page-hero-divider svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 90px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .page-hero {
        min-height: 440px;
        padding: 90px 0 120px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }

    .page-hero-features {
        gap: 12px 24px;
    }

    .page-hero-stats {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 400px;
        padding: 80px 0 100px;
    }

    .page-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline-white {
        width: 100%;
    }
}


/* network  */


.network-section {
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at center bottom, rgba(206, 227, 243, 0.9) 0%, rgba(206, 227, 243, 0.4) 30%, transparent 65%),
        linear-gradient(to bottom, #ffffff 0%, #ffffff 45%, #f9fcfe 100%);
}






/* ===================== HOW WE BUILD OUR NETWORK ===================== */

.network-process {
    padding: 100px 0;
    background: var(--surface-low);
    position: relative;
    overflow: hidden;
}

.network-process .section-header h2 span {
    color: var(--accent);
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Each Step */
.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px 30px;
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--surface-border);
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* Step Number */
.step-number {
    position: absolute;
    top: -18px;
    left: 24px;
    width: 36px;
    height: 36px;
    background: var(--green-gradient);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.3);
}

/* Icon */
.step-icon-wrap {
    position: relative;
    margin-bottom: 20px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s ease;
    border: 2px solid var(--accent-border);
}

.process-step:hover .step-icon {
    background: var(--green-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

/* Connector Line (hidden on mobile) */
.step-connector {
    display: none;
}

/* Content */
.step-content h3 {
    font-size: 1.2rem;
    color: var(--navy-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin: 0;
}

/* Responsive Process Grid */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* ===================== SOLAR PRODUCTS ACROSS SEA ===================== */

.network-supply {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.supply-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Image Side */
.supply-image-wrapper {
    position: relative;
}

.supply-image-wrapper img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: block;
    transition: transform 0.5s ease;
}

.supply-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Content Side */
.supply-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.supply-content .label-caps {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.supply-content .label-caps i {
    font-size: 1rem;
}

.supply-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy-dark);
    margin: 0;
}

.supply-content h2 span {
    color: var(--accent);
}

.supply-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-soft);
}

/* Product Category Cards */
.supply-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 5px;
}

.supply-product-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: var(--surface-low);
    border-radius: 14px;
    border: 1px solid var(--surface-border);
    transition: all 0.3s ease;
}

.supply-product-card:hover {
    background: #ffffff;
    border-color: var(--accent-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
}

.supply-product-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.supply-product-icon.orange {
    background: #fff7ed;
    color: #ea580c;
    border: 1px solid #fed7aa;
}

.supply-product-icon.blue {
    background: var(--blue-soft);
    color: var(--blue);
    border: 1px solid var(--blue-border);
}

.supply-product-icon.green {
    background: var(--green-soft);
    color: var(--green);
    border: 1px solid var(--green-border);
}

.supply-product-icon.purple {
    background: var(--purple-soft);
    color: var(--purple);
    border: 1px solid var(--purple-border);
}

.supply-product-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 3px;
}

.supply-product-info p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Supply Stats Row */
.supply-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--surface-border);
}

.supply-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.supply-stat strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.supply-stat span {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* Responsive Supply */
@media (max-width: 992px) {
    .supply-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .supply-image-wrapper {
        order: 1;
    }

    .supply-content {
        order: 2;
        text-align: center;
        align-items: center;
    }

    .supply-content .label-caps {
        justify-content: center;
    }

    .supply-products {
        max-width: 500px;
    }

    .supply-stats-row {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .supply-products {
        grid-template-columns: 1fr;
    }

    .supply-stats-row {
        gap: 25px;
        flex-wrap: wrap;
    }
}





/* ===================== NETWORK CTA BANNER ===================== */

.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #064e26 0%, #0a7c3e 30%, #16a34a 60%, #10b981 100%);
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(40%);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 80px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.cta-banner-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-banner-content .label-caps {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.cta-banner-content .label-caps i {
    color: #fbbf24;
    font-size: 1rem;
}

.cta-banner-content h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
}

.cta-banner-content h2 span {
    color: #fbbf24;
    display: inline-block;
}

.cta-banner-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.8;
    max-width: 500px;
}

.cta-banner-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 600;
}

.cta-trust-item i {
    color: #fbbf24;
    font-size: 1rem;
}

.cta-banner-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-action-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.cta-action-icon.green-icon {
    background: var(--accent-soft);
    color: var(--accent);
}

.cta-action-icon.blue-icon {
    background: var(--blue-soft);
    color: var(--blue);
}

.cta-action-card h3 {
    font-size: 1.35rem;
    color: var(--navy-dark);
    font-weight: 700;
    margin: 0;
}

.cta-action-card p {
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
}

.cta-btn-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--green-gradient);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-btn-green:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.cta-btn-green i {
    transition: transform 0.3s ease;
}

.cta-btn-green:hover i {
    transform: translateX(5px);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--navy-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid var(--navy-dark);
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-btn-outline:hover {
    background: var(--navy-dark);
    color: #ffffff;
    transform: translateX(5px);
}


.cta-action-card:hover p {
   color: #ffffff;
}

.cta-btn-outline i {
    transition: transform 0.3s ease;
}

.cta-btn-outline:hover i {
    transform: translateX(5px);
}

/* Wave Dividers */
.cta-banner-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.cta-banner-wave-top svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 50px;
}

.cta-banner-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.cta-banner-wave-bottom svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 50px;
}

/* Responsive CTA */
@media (max-width: 992px) {
    .cta-banner {
        padding: 100px 0;
    }

    .cta-banner-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .cta-banner-content {
        align-items: center;
    }

    .cta-banner-content .label-caps {
        justify-content: center;
    }

    .cta-banner-content > p {
        max-width: 600px;
    }

    .cta-banner-trust {
        justify-content: center;
    }

    .cta-action-card {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 80px 0;
    }

    .cta-banner-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-action-card {
        padding: 24px;
    }
}


