@charset "utf-8";

.png-consult-page {
    width: 100%;
    margin-top: 8px;
    color: #333;
}

/* hero */
.png-consult-hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid #d5dde5;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8fbfd 0%, #eef5f7 55%, #fff 100%);
    box-shadow: 0 2px 10px rgba(15, 34, 64, .06);
}

.png-consult-hero__main {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 28px;
    align-items: center;
}

.png-consult-hero__brand {
    padding: 14px;
    border: 1px solid #d5dde5;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.png-consult-logo {
    display: block;
    width: 100%;
    max-width: 440px;
    height: auto;
    margin: 0 auto;
}

.png-consult-hero__copy {
    min-width: 0;
}

.png-consult-hero__eyebrow {
    margin: 0 0 8px;
    color: #0b6678;
    font-size: var(--png-text-rg);
    font-weight: var(--png-weight-bold);
    letter-spacing: -0.3px;
}

.png-consult-hero__title {
    margin: 0 0 14px;
    color: #0f2240;
    font-size: var(--png-text-2xl);
    font-weight: var(--png-weight-bold);
    letter-spacing: -0.8px;
    line-height: 1.3;
}

.png-consult-intro p {
    margin: 0 0 10px;
    color: #444;
    font-size: var(--png-text-base);
    line-height: 1.75;
    letter-spacing: -0.3px;
}

.png-consult-intro p:last-child {
    margin-bottom: 0;
}

.png-consult-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 18px 0 0;
    border-top: 1px solid #d5dde5;
    list-style: none;
}

.png-consult-features li {
    padding: 14px 16px;
    border: 1px solid #c8dde2;
    border-radius: 6px;
    background: #fff;
    text-align: center;
}

.png-consult-features strong {
    display: block;
    color: #0f2240;
    font-size: var(--png-text-md);
    font-weight: var(--png-weight-bold);
    line-height: 1.25;
}

.png-consult-features span {
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: var(--png-text-sm);
}

/* sections */
.png-consult-section {
    margin-bottom: 18px;
}

.png-consult-section:last-of-type {
    margin-bottom: 0;
}

.png-consult-section-head {
    margin-bottom: 0;
    padding: 10px 14px;
    border-radius: 8px 8px 0 0;
    background: #0f2240;
}

.png-consult-section-head--teal {
    background: #0b6678;
}

.png-consult-section-head--orange {
    background: #d47a00;
}

.png-consult-section-head h2 {
    margin: 0;
    color: #fff;
    font-size: var(--png-text-lg);
    font-weight: var(--png-weight-bold);
    letter-spacing: -0.5px;
}

.png-consult-panel {
    padding: 16px;
    border: 1px solid #d5dde5;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(15, 34, 64, .04);
}

/* contact cards */
.png-consult-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.png-consult-contact-card {
    padding: 18px 16px;
    border: 1px solid #e3e9ef;
    border-radius: 8px;
    background: linear-gradient(180deg, #fafcfd, #f5f8fb);
    text-align: center;
}

.png-consult-contact-card__label {
    display: block;
    margin-bottom: 8px;
    color: #0b6678;
    font-size: var(--png-text-sm);
    font-weight: var(--png-weight-bold);
}

.png-consult-contact-card strong {
    display: block;
    font-size: var(--png-text-2xl);
    font-weight: var(--png-weight-bold);
    line-height: 1.3;
}

.png-consult-contact-card strong a {
    color: #0f2240;
    text-decoration: none;
    white-space: nowrap;
}

.png-consult-contact-card strong a:hover {
    color: #0b6678;
    text-decoration: underline;
}

.png-consult-contact-card em {
    display: block;
    margin-top: 6px;
    color: #666;
    font-style: normal;
    font-size: var(--png-text-sm);
}

/* notice */
.png-consult-notice-list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.png-consult-notice-list li {
    position: relative;
    margin-bottom: 10px;
    padding: 12px 12px 12px 28px;
    border: 1px solid #f0e0c8;
    border-radius: 6px;
    background: #fffaf3;
    color: #333;
    font-size: var(--png-text-base);
    line-height: 1.65;
}

.png-consult-notice-list li:last-child {
    margin-bottom: 0;
}

.png-consult-notice-list li:before {
    position: absolute;
    left: 12px;
    top: 18px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d47a00;
    content: "";
}

.png-consult-address {
    padding: 14px 16px;
    border: 1px solid #c8dde2;
    border-radius: 6px;
    background: #f8fbfd;
}

.png-consult-address strong {
    display: block;
    margin-bottom: 6px;
    color: #0f2240;
    font-size: var(--png-text-base);
    font-weight: var(--png-weight-bold);
}

.png-consult-address p {
    margin: 0;
    color: #444;
    font-size: var(--png-text-base);
    line-height: 1.6;
}

/* cta */
.png-consult-cta {
    margin-top: 22px;
    padding: 22px 24px;
    border: 1px solid #c8dde2;
    border-radius: 8px;
    background: linear-gradient(180deg, #f8fbfd, #eef5f7);
    text-align: center;
}

.png-consult-cta p {
    margin: 0 0 16px;
    color: #333;
    font-size: var(--png-text-md);
    font-weight: var(--png-weight-semibold);
    line-height: 1.6;
}

.png-consult-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.png-consult-btn {
    display: inline-block;
    min-width: 180px;
    padding: 12px 20px;
    border-radius: 6px;
    background: #0b6678;
    color: #fff !important;
    font-size: var(--png-text-md);
    font-weight: var(--png-weight-bold);
    text-decoration: none !important;
    transition: background .15s;
}

.png-consult-btn:hover {
    background: #015163;
    color: #fff !important;
}

.png-consult-btn--primary {
    min-width: 220px;
    padding: 14px 28px;
    background: #d47a00;
}

.png-consult-btn--primary:hover {
    background: #b86800;
}

.png-consult-btn--ghost {
    border: 1px solid #0b6678;
    background: #fff;
    color: #0b6678 !important;
}

.png-consult-btn--ghost:hover {
    background: #f0f7f9;
    color: #015163 !important;
}

@media (max-width: 860px) {
    .png-consult-hero__main {
        grid-template-columns: 1fr;
    }

    .png-consult-hero__brand {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .png-consult-hero {
        padding: 16px;
    }

    .png-consult-hero__title {
        font-size: var(--png-text-2xl);
    }

    .png-consult-features {
        grid-template-columns: 1fr;
    }

    .png-consult-contact-grid {
        grid-template-columns: 1fr;
    }

    .png-consult-contact-card strong {
        font-size: var(--png-text-xl);
    }

    .png-consult-btn,
    .png-consult-btn--primary {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}
