

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7fb;
    color: #1f2937;
}

a {
    text-decoration: none;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.notice-strip {
    background: linear-gradient(90deg, #fff4cc 0%, #ffe49a 50%, #fff4cc 100%);
    color: #5a3e00;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 12px 0;
}

.notice-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.notice-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff4d4f;
    flex: 0 0 auto;
    animation: pulseNotice 1.3s infinite;
}

@keyframes pulseNotice {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.22); opacity: 0.75; }
    100% { transform: scale(1); opacity: 1; }
}

.topbar {
    background: linear-gradient(135deg, #0b1f4d 0%, #0f3d91 45%, #173f88 100%);
    color: #fff;
    padding: 18px 0;
    box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.brand-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.logo-panel {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;
    padding: 10px 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.logo-panel.wpbn-logo img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.logo-panel.anc-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.brand-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.brand-subtitle {
    margin: 0;
    opacity: 0.92;
    font-size: 14px;
}

.top-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.25s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary {
    background: #fff;
    color: #0f3d91;
    box-shadow: 0 8px 18px rgba(255,255,255,0.18);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 22px rgba(37,211,102,0.28);
}

.btn-gold {
    background: #d4a63d;
    color: #fff;
    box-shadow: 0 10px 22px rgba(212,166,61,0.28);
}

.btn-outline {
    background: #eef4ff;
    color: #0f3d91;
}

.hero {
    background: linear-gradient(135deg, #0f3d91 0%, #173f88 45%, #0b1f4d 100%);
    color: #fff;
    padding: 72px 0 82px;
    position: relative;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    filter: blur(4px);
    animation: floatShape 9s ease-in-out infinite;
}

.shape.one {
    width: 180px;
    height: 180px;
    top: 30px;
    right: 8%;
}

.shape.two {
    width: 120px;
    height: 120px;
    bottom: 50px;
    right: 28%;
    animation-delay: 1.2s;
}

.shape.three {
    width: 220px;
    height: 220px;
    top: 90px;
    left: -40px;
    animation-delay: 2.1s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-14px) translateX(8px); }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h2 {
    margin: 0 0 16px;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 24px;
    opacity: 0.96;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-note {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 11px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.hero-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;
    padding: 28px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    align-self: center;
}

.hero-mini-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    opacity: 0.85;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-highlight {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.partner-badge-card {
    margin-top: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 16px 18px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.partner-badge {
    flex: 0 0 auto;
    background: linear-gradient(135deg, #d4a63d 0%, #f3ca6b 100%);
    color: #0b1f4d;
    font-size: 12px;
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    line-height: 1.3;
    min-width: 110px;
    text-align: center;
}

.partner-badge-text {
    font-size: 14px;
    line-height: 1.7;
}

.section {
    padding: 68px 0;
}

.section-title {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 800;
    color: #0b1f4d;
}

.section-subtitle {
    margin: 0 0 28px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.trust-card,
.info-box,
.kpi-card,
.content-card,
.card,
.business-card,
.faq-item,
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ebf0f7;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.trust-card {
    padding: 24px;
}

.trust-card h4 {
    margin: 0 0 10px;
    color: #0b1f4d;
    font-size: 20px;
}

.trust-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 22px;
}

.card {
    padding: 24px;
    background: rgba(255,255,255,0.70);
    backdrop-filter: blur(10px);
}

.card.featured {
    border: 2px solid #d4a63d;
    box-shadow: 0 16px 38px rgba(212,166,61,0.18);
}

.badge {
    display: inline-block;
    background: #d4a63d;
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.package-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #0b1f4d;
}

.package-price {
    font-size: 30px;
    font-weight: 800;
    color: #0f3d91;
    margin: 14px 0;
}

.package-text {
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 14px;
}

.package-features {
    margin: 0 0 16px;
    padding-left: 18px;
    color: #374151;
}

.package-features li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.business-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.business-card {
    padding: 28px;
}

.business-card.primary {
    background: linear-gradient(135deg, #0b1f4d 0%, #0f3d91 100%);
    color: #fff;
    border: none;
    box-shadow: 0 18px 40px rgba(11,31,77,0.22);
}

.business-card.primary h3,
.business-card.secondary h3 {
    margin-top: 0;
    font-size: 28px;
    font-weight: 800;
}

.business-card p {
    line-height: 1.8;
    margin-bottom: 16px;
}

.business-card.secondary h3 {
    color: #0b1f4d;
}

.highlight-line {
    color: #d4a63d;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: #0b1f4d;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #6b7280;
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    display: block;
}

.testimonial-wrap {
    position: relative;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

.testimonial-card {
    padding: 24px;
}

.testimonial-card h4 {
    margin: 0 0 8px;
    color: #0b1f4d;
}

.testimonial-card p {
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.info-box {
    padding: 22px;
}

.info-box h4 {
    margin: 0 0 10px;
    color: #0b1f4d;
}

.info-box p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.footer {
    background: linear-gradient(135deg, #081633 0%, #0b1f4d 100%);
    color: #fff;
    padding: 46px 0;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 24px;
}

.footer h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 19px;
}

.footer p,
.footer li {
    opacity: 0.95;
    line-height: 1.7;
    font-size: 15px;
}

.footer ul {
    margin: 0;
    padding-left: 18px;
}

.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f3d91 0%, #0b1f4d 100%);
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 22px 52px rgba(0,0,0,0.20);
}

.login-title {
    font-size: 30px;
    font-weight: 800;
    color: #0b1f4d;
    margin-bottom: 6px;
}

.login-subtitle {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid #d9e2ef;
    outline: none;
    font-size: 15px;
}

.form-control:focus {
    border-color: #0f3d91;
    box-shadow: 0 0 0 3px rgba(15,61,145,0.10);
}

.alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-error {
    background: #ffe5e5;
    color: #9f1239;
}

.admin-shell {
    min-height: 100vh;
    background: #f5f7fb;
}

.admin-header {
    background: linear-gradient(135deg, #0b1f4d 0%, #0f3d91 100%);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.admin-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.admin-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.admin-nav a {
    background: #fff;
    color: #0f3d91;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.kpi-card {
    padding: 24px;
}

.kpi-card h4 {
    margin: 0 0 10px;
    color: #6b7280;
    font-size: 14px;
}

.kpi-card .kpi-number {
    font-size: 32px;
    font-weight: 800;
    color: #0b1f4d;
}

.content-card {
    padding: 24px;
    margin-top: 24px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
}

.floating-whatsapp a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(37,211,102,0.34);
    animation: floatBounce 2s infinite;
}

.floating-whatsapp .wa-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.table-wrap {
    overflow-x: auto;
}

@media (max-width: 980px) {
    .hero-grid,
    .business-grid,
    .footer-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 22px;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero h2 {
        font-size: 31px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .package-price {
        font-size: 26px;
    }

    .logo-panel.wpbn-logo img {
        height: 40px;
    }

    .logo-panel.anc-logo img {
        height: 40px;
    }

    .notice-inner {
        font-size: 13px;
        padding: 0 8px;
    }

    .admin-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-nav a,
    .btn {
        text-align: center;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }

    .floating-whatsapp a {
        padding: 12px 15px;
        font-size: 14px;
    }
}

.price-section-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.price-box {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e7edf6;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.price-box-header {
    background: linear-gradient(135deg, #0b1f4d 0%, #0f3d91 100%);
    color: #fff;
    padding: 20px 22px;
}

.price-box-header h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
}

.price-box-header p {
    margin: 0;
    opacity: 0.94;
    line-height: 1.7;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #edf2f7;
    text-align: left;
    font-size: 15px;
}

.price-table th {
    background: #f8fbff;
    color: #0b1f4d;
    font-weight: 800;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table td:last-child,
.price-table th:last-child {
    text-align: right;
    white-space: nowrap;
}

.offer-banner {
    margin-top: 22px;
    background: linear-gradient(135deg, #d4a63d 0%, #f0c868 100%);
    color: #0b1f4d;
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 14px 30px rgba(212,166,61,0.18);
}

.offer-banner h4 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
}

.offer-banner p {
    margin: 0;
    line-height: 1.75;
    font-weight: 600;
}

.mobile-stack-fix {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 980px) {
    .price-section-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-left,
    .hero-card {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-note,
    .partner-badge-card {
        width: 100%;
    }

    .partner-badge-card {
        flex-direction: column;
        align-items: stretch;
    }

    .partner-badge {
        min-width: auto;
        width: fit-content;
    }

    .price-box-header h3 {
        font-size: 20px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 14px;
        font-size: 14px;
    }

    .offer-banner h4 {
        font-size: 20px;
    }
}

.hero-promo-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a63d 0%, #f6d27b 100%);
    color: #0b1f4d;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 14px 28px rgba(212,166,61,0.22);
    animation: promoPulse 1.8s infinite;
    margin-bottom: 18px;
}

.hero-promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4d4f;
    animation: pulseNotice 1.2s infinite;
}

@keyframes promoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 14px 28px rgba(212,166,61,0.22);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 18px 34px rgba(212,166,61,0.32);
    }
}

.package-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 14px;
    color: #4b5563;
}

.package-offer-box {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff8e8 0%, #fff1c8 100%);
    border: 1px solid #f4df9e;
    color: #6a4a00;
    font-weight: 700;
    line-height: 1.7;
}

.price-note-card {
    margin-top: 20px;
    background: #ffffff;
    border: 1px solid #e9eef6;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    border-radius: 18px;
    padding: 20px;
}

.price-note-card h4 {
    margin: 0 0 10px;
    color: #0b1f4d;
    font-size: 22px;
}

.price-note-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.75;
}

.home-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

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

.package-top-banner {
    background: linear-gradient(135deg, #0b1f4d 0%, #0f3d91 100%);
    color: #fff;
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 14px 34px rgba(11,31,77,0.18);
    margin-bottom: 24px;
}

.package-top-banner h3 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 800;
}

.package-top-banner p {
    margin: 0;
    line-height: 1.75;
    opacity: 0.96;
}

.quick-link-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef4ff;
    color: #0f3d91;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}

.hero-register-note {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.92;
}

.footer-badge {
    display: inline-block;
    margin-top: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-promo-strip {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 16px;
    }

    .section-head-flex {
        align-items: stretch;
    }

    .package-top-banner h3 {
        font-size: 22px;
    }

    .home-cta-row {
        flex-direction: column;
    }

    .home-cta-row .btn,
    .home-cta-row .quick-link-chip {
        width: 100%;
        justify-content: center;
    }
}

.price-box ul.package-features {
    columns: 1;
    margin-top: 14px;
}

.price-box .package-price {
    font-size: 28px;
    font-weight: 800;
    color: #0f3d91;
}

@media (min-width: 992px) {
    .price-box ul.package-features {
        columns: 1;
    }
}

.package-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.package-mini-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef4ff;
    color: #0f3d91;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.package-toggle-btn {
    width: 100%;
    margin-top: 12px;
    background: #0f3d91;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 800;
    cursor: pointer;
}

.package-details-expand {
    display: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e8edf6;
}

.package-card-open .package-details-expand {
    display: block;
}

.inclusion-card {
    background: #fff;
    border: 1px solid #e9eef6;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
    margin-top: 16px;
}

.inclusion-card h4 {
    margin: 0 0 12px;
    color: #0b1f4d;
    font-size: 20px;
}

.inclusion-note {
    margin-top: 14px;
    background: linear-gradient(135deg, #effaf2 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 700;
    line-height: 1.7;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.service-price-card {
    background: #fff;
    border: 1px solid #e9eef6;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.service-price-card h4 {
    margin: 0 0 10px;
    color: #0b1f4d;
    font-size: 18px;
    line-height: 1.4;
}

.service-price-card .service-price {
    color: #0f3d91;
    font-size: 24px;
    font-weight: 800;
}

.visa-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.visa-price-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e6edf8;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(15,61,145,0.06);
}

.visa-price-card h4 {
    margin: 0 0 10px;
    color: #0b1f4d;
    font-size: 20px;
}

.visa-price-card .visa-price {
    color: #0f3d91;
    font-size: 28px;
    font-weight: 800;
}

.visa-price-card .visa-sub {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .package-summary-row {
        align-items: stretch;
    }

    .package-mini-pill {
        justify-content: center;
    }

    .service-price-card .service-price,
    .visa-price-card .visa-price {
        font-size: 22px;
    }
}

.price-strike {
    color: #9ca3af;
    font-size: 15px;
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-offer {
    color: #0f3d91;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.discount-badge {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.package-short-points {
    margin: 16px 0 0;
    padding-left: 18px;
    color: #374151;
}

.package-short-points li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-weight: 600;
}
.package-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.package-mini-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef4ff;
    color: #0f3d91;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.price-strike {
    color: #9ca3af;
    font-size: 15px;
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-offer {
    color: #0f3d91;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.discount-badge {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.package-short-points {
    margin: 16px 0 0;
    padding-left: 18px;
    color: #374151;
}

.package-short-points li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-weight: 600;
}

.package-toggle-btn {
    width: 100%;
    margin-top: 12px;
    background: #0f3d91;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 800;
    cursor: pointer;
}

.package-details-expand {
    display: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e8edf6;
}

.package-card-open .package-details-expand {
    display: block;
}

.inclusion-card {
    background: #fff;
    border: 1px solid #e9eef6;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
    margin-top: 16px;
}

.inclusion-card h4 {
    margin: 0 0 12px;
    color: #0b1f4d;
    font-size: 20px;
}

.inclusion-note {
    margin-top: 14px;
    background: linear-gradient(135deg, #effaf2 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 700;
    line-height: 1.7;
}

.package-offer-box {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff8e8 0%, #fff1c8 100%);
    border: 1px solid #f4df9e;
    color: #6a4a00;
    font-weight: 700;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .package-summary-row {
        align-items: stretch;
    }

    .package-mini-pill {
        justify-content: center;
    }

    .price-offer {
        font-size: 24px;
    }
}

.package-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.package-mini-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef4ff;
    color: #0f3d91;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.inclusion-card {
    background: #fff;
    border: 1px solid #e9eef6;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
    margin-top: 16px;
}

.inclusion-card h4 {
    margin: 0 0 12px;
    color: #0b1f4d;
    font-size: 20px;
}

.inclusion-note {
    margin-top: 14px;
    background: linear-gradient(135deg, #effaf2 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 700;
    line-height: 1.7;
}

.package-offer-box {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff8e8 0%, #fff1c8 100%);
    border: 1px solid #f4df9e;
    color: #6a4a00;
    font-weight: 700;
    line-height: 1.7;
}

.package-grid-clean {
    margin-bottom: 30px;
}

.package-clean-price {
    color: #0f3d91;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.shared-inclusion-wrap {
    display: grid;
    gap: 22px;
    margin-top: 24px;
}

.shared-inclusion-card {
    background: #ffffff;
    border: 1px solid #e8edf6;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.shared-inclusion-card-secondary {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

.shared-inclusion-card h3 {
    margin: 0 0 10px;
    color: #0b1f4d;
    font-size: 26px;
    font-weight: 800;
}

.shared-inclusion-sub {
    margin: 0 0 18px;
    color: #6b7280;
    line-height: 1.75;
}

.shared-inclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.shared-inclusion-item {
    background: #f8fbff;
    border: 1px solid #e6edf8;
    border-radius: 16px;
    padding: 14px 16px;
    color: #0b1f4d;
    font-weight: 700;
    line-height: 1.6;
    box-shadow: 0 6px 14px rgba(15,61,145,0.04);
}

.insurance-note-card {
    background: linear-gradient(135deg, #effaf2 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 22px rgba(34,197,94,0.08);
}

.insurance-note-card h3 {
    margin: 0 0 10px;
    color: #166534;
    font-size: 24px;
    font-weight: 800;
}

.insurance-note-card p {
    margin: 0;
    color: #166534;
    line-height: 1.8;
    font-weight: 700;
}

@media (max-width: 768px) {
    .package-clean-price {
        font-size: 24px;
    }

    .shared-inclusion-card h3,
    .insurance-note-card h3 {
        font-size: 21px;
    }

    .shared-inclusion-grid {
        grid-template-columns: 1fr;
    }

    .shared-inclusion-item {
        font-size: 14px;
    }
}