* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Microsoft JhengHei", sans-serif;
}
body{
     /* 漸層：由上橘黃到中淺黃到下純白 */
    background: linear-gradient(to bottom, #E67E22 0%, #FFD580 40%, #FFF9E6 70%, #FFFFFF 100%);
}


.full-bg-wrapper {
    width: 100%;
    min-height: 100vh;
    background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 10px;
}

/* --- 標題與內文 --- */
.header-section { 
    text-align: center; 
    margin-bottom: 20px; 
}

.title-img { 
    max-width: 100%; 
    height: auto; 
}

.content-section {
    color: #6d3600;
    font-weight: bold;
    text-align: center;
    line-height: 1.7;
    font-size: 1.3rem;
    margin-bottom: 40px;
}


.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.company-card {
    position: relative;
    padding: 5px;
}

.company-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid #fdf3e4;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    pointer-events: none;
}

.card-inner {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    height: 100%;
    border-radius: 0px;
    border: 1px solid #f0e6d2;
    text-align: left;
}

.card-title {
    color: #d0111b;
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: bold;
}


.status-note {
    color: #063175;
    text-align: center;
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 40px;
    font-weight: bold;
/*    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);*/
}



/* --- 按鈕 --- */
.button-group { 
    text-align: center; 
    margin-bottom: 50px; 
}

.btn {
    display: inline-block;
    padding: 15px 45px;
    margin: 0 15px;
    text-decoration: none;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    background: rgba(255, 100, 0, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
    transform: translateY(-8px);
    background: rgba(255, 80, 0, 1);
    box-shadow: 0 10px 20px rgba(255, 100, 0, 0.4);
    letter-spacing: 1px;
}

.full-width-price {
    width: 100%;
    background: linear-gradient(to bottom, #29a8e1 0%, #084c9a 100%);
    padding: 15px 0;
}

.price-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center; /* 垂直對齊 */
    color: white;
    gap: 35px;
    white-space: nowrap;
}

.p-item { 
    font-size: 1.7rem;
    font-weight: bold;
}

.white-text { 
    color: #ffffff; 
}

.gold { 
    color: #fff100; 
}

.p-big {
    font-size: 3.2rem;
    font-weight: 900;
    vertical-align: middle;
}

/* --- 聯絡資訊 --- */
.full-width-contact {
    width: 100%;
    background-color: #eef4f7;
    padding: 20px 0;
    text-align: center;
}

.contact-images { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
}

.info-img { height: 135px; }

/* --- 動態定義 --- */
.move-down {
    opacity: 0;
    animation: simpleDown 1s ease-out forwards;
}

@keyframes simpleDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.tech-bounce {
    opacity: 0;
    animation: bounceEffect 1.1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceEffect {
    0% { opacity: 0; transform: translateY(80px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.7s; }
.delay-3 { animation-delay: 1.1s; }
.delay-4 { animation-delay: 1.5s; }


/* RWD 手機版 */
@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }

    .header-section {
        margin-bottom: 10px;
        overflow: visible; /* 允許圖片溢出容器感 */
    }

    .title-img {
        width: 100%;
        max-width: none;
        transform: scale(1.05);
    }

    /* 內文置中齊左 */
    .content-section {
        font-size: 1rem;
        text-align: left;
        width: 100%;
        line-height: 1.6;
    }

    /* 垂直排列 */
    .company-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
        margin-top: -25px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .card-title p {
        font-size: 1rem;
    }

    .status-note {
        margin-top: 0px;
        margin-bottom: 30px;
        font-size: 1rem;
    }

    /* 按鈕 */
    .button-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 90%;
        max-width: 320px;
        font-size: 1.8rem;
        padding: 12px 0;
        margin: 0;
    }

    .full-width-price {
        margin-top: -20px;
    }


    /* 價格對齊 */
    .price-container { 
        flex-direction: column; 
        gap: 8px;
        white-space: normal; /* 允許換行 */
        text-align: center;
    }

    .p-item {
        font-size: 1.5rem;
    }

    .p-big { 
        font-size: 3rem;
        line-height: 3rem;
    }

    /* 聯絡資訊垂直 */
    .contact-images {
        flex-direction: column;
        gap: 15px;
    }

    .info-img {
        height: 100px;
    }
}