﻿/* =================================================
   PH Payment Website Global Style
   Philippines Payment System SEO Landing Page
================================================= */


/* =========================
   Reset
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}



body {
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    color: #1c2638;
    background: #f5f9ff;
    line-height: 1.8;
}



a {
    text-decoration: none;
    color: inherit;
}



img {
    max-width: 100%;
    display: block;
}



h1, h2, h3 {
    font-weight: 700;
}



h2 {
    text-align: center;
    font-size: 38px;
    color: #081a38;
    margin-bottom: 25px;
}



h3 {
    font-size: 22px;
    color: #10233f;
}



p {
    font-size: 16px;
}





/* =========================
 Header
========================= */


.header {
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: rgba(4,18,45,.82);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,.15);
}



.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00d9ff;
}



.header nav {
    display: flex;
    gap: 35px;
}



    .header nav a {
        color: white;
        font-size: 16px;
        transition: .3s;
    }



        .header nav a:hover,
        .header nav .active {
            color: #00d9ff;
        }





.nav-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 40px;
    background: linear-gradient( 90deg, #006eff, #00d9ff );
    color: white !important;
    box-shadow: 0 0 25px rgba(0,180,255,.45);
}





/* =========================
 Banner
========================= */


.banner {
    height: 760px;
    position: relative;
    overflow: hidden;
}



.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s;
}



    .slide.active {
        opacity: 1;
    }



    .slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,10,40,.88), rgba(0,70,160,.35) );
    }



.banner-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 720px;
    color: white;
}



    .banner-content h1 {
        font-size: 56px;
        line-height: 1.25;
        margin-bottom: 25px;
    }



    .banner-content h2 {
        color: white;
        text-align: left;
        font-size: 48px;
    }



    .banner-content p {
        font-size: 22px;
        margin-bottom: 40px;
    }




    .banner-content button {
        border: none;
        padding: 15px 42px;
        border-radius: 50px;
        background: linear-gradient( 90deg, #00b7ff, #006cff );
        color: white;
        font-size: 18px;
        cursor: pointer;
    }






/* =========================
 Section
========================= */


.section {
    padding: 90px 8%;
}



.desc {
    text-align: center;
    color: #667;
    margin-bottom: 50px;
}







/* =========================
 Dark Section
========================= */


.dark-section {
    padding: 90px 8%;
    background: linear-gradient( 135deg, #061633, #092b65 );
    color: white;
}



    .dark-section h2 {
        color: white;
    }



    .dark-section h3 {
        color: white;
    }



    .dark-section p {
        color: rgba(255,255,255,.85);
    }







/* =========================
 Cards
========================= */


.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}



.card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,70,150,.12);
    transition: .3s;
}



    .card:hover {
        transform: translateY(-10px);
    }



    .card i {
        font-size: 40px;
        color: #008cff;
        margin-bottom: 20px;
    }



    .card p {
        color: #667;
    }





/* =========================
 Solution
========================= */


.solution {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}



    .solution div {
        padding: 35px;
        border-radius: 20px;
        background: rgba(255,255,255,.1);
        border: 1px solid rgba(255,255,255,.2);
        transition: .3s;
    }



        .solution div:hover {
            background: rgba(0,180,255,.2);
        }







/* =========================
 Payment Grid
========================= */


.payment-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}



    .payment-grid div {
        background: white;
        padding: 35px;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }



    .payment-grid img {
        height: 80px;
        margin: 0 auto 20px;
        object-fit: contain;
    }






/* =========================
 Feature
========================= */


.feature {
    padding: 90px 8%;
    background: linear-gradient( 120deg, #eef8ff, #fff );
}



.feature-box {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}



    .feature-box span {
        padding: 30px;
        background: white;
        border-radius: 18px;
        text-align: center;
        color: #006cff;
        font-size: 18px;
        box-shadow: 0 10px 30px rgba(0,100,255,.12);
    }







/* =========================
 Architecture
========================= */


.architecture {
    padding: 90px 8%;
    background: #06152f;
    color: white;
}



    .architecture h2 {
        color: white;
    }



.arch-flow {
    max-width: 650px;
    margin: auto;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    font-size: 22px;
}







/* =========================
 Security
========================= */


.security {
    padding: 90px 8%;
    background: #f1f8ff;
}







/* =========================
 Process
========================= */


.process {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}



    .process span {
        padding: 18px 35px;
        background: white;
        border-radius: 40px;
        color: #006cff;
        box-shadow: 0 10px 25px rgba(0,0,0,.1);
    }







/* =========================
 SEO Content
========================= */


.seo-content {
    padding: 80px 10%;
    background: white;
}



    .seo-content h2 {
        margin-top: 45px;
    }



    .seo-content h3 {
        margin-top: 30px;
    }



    .seo-content p {
        color: #555;
    }



    .seo-content ul {
        padding-left: 30px;
    }







/* =========================
 FAQ
========================= */


.faq {
    background: white;
}



    .faq h3 {
        margin-top: 30px;
        color: #006cff;
    }



    .faq p {
        color: #555;
    }







/* =========================
 CTA
========================= */


.cta {
    padding: 100px 20px;
    text-align: center;
    color: white;
    background: linear-gradient( 120deg, #006cff, #00d9ff );
}



    .cta h2 {
        color: white;
        font-size: 42px;
    }



    .cta p {
        font-size: 20px;
        margin: 20px;
    }



.friend-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}



    .friend-links a {
        color: white;
        font-size: 14px;
    }







/* =========================
 Footer
========================= */


footer {
    padding: 30px;
    text-align: center;
    background: #04122d;
    color: white;
}







/* =========================
 Mobile
========================= */


@media(max-width:900px) {


    .header {
        padding: 0 20px;
    }



        .header nav {
            display: none;
        }



    .banner {
        height: 600px;
    }



    .banner-content {
        left: 25px;
        right: 25px;
    }



        .banner-content h1 {
            font-size: 36px;
        }



        .banner-content p {
            font-size: 18px;
        }



    .cards,
    .solution,
    .payment-grid,
    .feature-box {
        grid-template-columns: 1fr;
    }



    h2 {
        font-size: 30px;
    }



    .process {
        flex-direction: column;
    }
}
