@font-face {
    font-family: "Poppins";
    src: url("/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-body: "Plus Jakarta Sans", "Poppins", sans-serif;
    --font-display: "Sora", "Plus Jakarta Sans", sans-serif;
    --phml-blue: #1e3a8a;
    --phml-blue-deep: #102558;
    --phml-yellow: #fff212;
    --phml-green: #04a95b;
    --phml-ink: #11203d;
    --phml-muted: #56637a;
    --phml-border: rgba(17, 32, 61, 0.1);
    --phml-surface: rgba(255, 255, 255, 0.92);
    --phml-surface-strong: #ffffff;
    --phml-gray: #f2f2f2;
    --phml-shadow: 0 18px 55px rgba(15, 37, 88, 0.12);
    --phml-radius: 28px;
    --phml-radius-sm: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--phml-ink);
    background:
        radial-gradient(circle at top left, rgba(255, 242, 18, 0.28), transparent 28%),
        radial-gradient(circle at top right, rgba(4, 169, 91, 0.12), transparent 22%),
        linear-gradient(180deg, #f7f9fd 0%, #eef3fb 45%, #ffffff 100%);
    line-height: 1.7;
}

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

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

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-copy h1,
.page-hero h1,
.footer-cta-copy h2,
.mobile-menu-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.nav-brand-copy strong,
.nav-links a,
.site-btn,
.section-kicker,
.topbar-inner,
.mobile-links a span {
    font-family: var(--font-body);
}

.site-shell {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.site-aura {
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.5;
}

.site-aura-one {
    top: -120px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: rgba(30, 58, 138, 0.16);
}

.site-aura-two {
    right: -100px;
    top: 280px;
    width: 240px;
    height: 240px;
    background: rgba(4, 169, 91, 0.12);
}

.site-container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-main > * + * {
    margin-top: 1.25rem;
}

.topbar {
    background: linear-gradient(90deg, var(--phml-blue-deep), var(--phml-blue));
    color: #fff;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    font-size: 0.86rem;
}

.topbar-item,
.social-strip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.topbar-item img,
.social-strip img {
    width: 18px;
    height: 18px;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(17, 32, 61, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.nav-logo {
    width: 72px;
}

.nav-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.nav-brand-copy strong {
    font-size: 1rem;
    color: var(--phml-blue);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.nav-brand-copy span {
    font-size: 0.76rem;
    color: var(--phml-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links-shell {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 32, 61, 0.08);
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--phml-muted);
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    background: rgba(30, 58, 138, 0.08);
    color: var(--phml-blue);
}

.nav-actions,
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.site-btn {
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font: inherit;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(17, 32, 61, 0.18);
}

.nav-btn-primary {
    background: var(--phml-blue);
    color: #fff;
}

.nav-btn-secondary {
    background: rgba(30, 58, 138, 0.08);
    color: var(--phml-blue);
}

.footer-btn {
    background: #fff;
    color: var(--phml-blue);
}

.mobile-toggle {
    display: none;
    border: 1px solid rgba(17, 32, 61, 0.08);
    background: rgba(255, 255, 255, 0.85);
    width: 52px;
    height: 52px;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(17, 32, 61, 0.1);
}

.mobile-toggle-lines {
    display: grid;
    gap: 4px;
    width: 18px;
    margin: 0 auto;
}

.mobile-toggle-lines span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--phml-blue);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    padding-bottom: 1rem;
    background: transparent;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-inner {
    padding: 0;
}

.mobile-menu-panel {
    padding: 1rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 32, 61, 0.08);
    box-shadow: 0 24px 60px rgba(15, 37, 88, 0.16);
}

.mobile-menu-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.2rem 0 1rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(17, 32, 61, 0.08);
    color: var(--phml-ink);
}

.mobile-menu-title {
    font-size: 1rem;
    font-weight: 700;
}

.mobile-menu-subtitle {
    margin-top: 0.25rem;
    color: var(--phml-muted);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.mobile-menu-contact {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(30, 58, 138, 0.06);
    border: 1px solid rgba(30, 58, 138, 0.1);
    color: var(--phml-blue);
    font-size: 0.78rem;
    font-weight: 700;
}

.mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-links li + li {
    border-top: 1px solid rgba(17, 32, 61, 0.07);
}

.mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 1rem 0.15rem;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-links a:hover,
.mobile-links a.is-active {
    color: var(--phml-blue);
    padding-left: 0.45rem;
}

.mobile-links a::after {
    content: "\203A";
    color: var(--phml-blue);
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.8;
}

.mobile-links a span {
    display: block;
    font-weight: 700;
    color: var(--phml-ink);
    font-size: 0.98rem;
}

.mobile-links a.is-active span {
    color: var(--phml-blue);
}

.mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(17, 32, 61, 0.08);
}

.mobile-action-btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1rem;
}

.mobile-menu-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 0.9rem;
    color: var(--phml-muted);
    font-size: 0.72rem;
}

.page-hero,
.home-hero {
    position: relative;
    overflow: hidden;
    width: min(1180px, calc(100% - 2rem));
    margin: 1.5rem auto 0;
    padding: 4rem;
    border-radius: calc(var(--phml-radius) + 6px);
    background:
        linear-gradient(135deg, rgba(16, 37, 88, 0.95), rgba(30, 58, 138, 0.88)),
        url("/images/footer-bg.png") center/cover no-repeat;
    color: #fff;
    box-shadow: var(--phml-shadow);
}

.home-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
    max-width: 640px;
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.hero-highlight {
    color: var(--phml-yellow);
}

.hero-actions,
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.hero-stat {
    min-width: 150px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    font-family: var(--font-display);
}

.hero-stat span {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.76);
}

.hero-panel {
    position: relative;
    border-radius: var(--phml-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 1rem;
}

.hero-panel img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.hero-panel-card {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 220px;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--phml-ink);
}

.hero-panel-card strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--phml-blue);
}

.page-hero {
    padding: 3.25rem 4rem;
}

.page-hero h1 span {
    color: var(--phml-yellow);
}

.section-block {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0;
}

.section-card {
    background: var(--phml-surface);
    border: 1px solid var(--phml-border);
    border-radius: var(--phml-radius);
    box-shadow: var(--phml-shadow);
    padding: clamp(1.4rem, 3vw, 2.2rem);
}

.section-card-muted {
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.04), rgba(255, 255, 255, 0.94));
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--phml-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.section-lead {
    max-width: 760px;
    color: var(--phml-muted);
}

.feature-grid,
.service-grid,
.info-grid,
.download-grid,
.content-grid {
    display: grid;
    gap: 1.3rem;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid,
.info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.service-card,
.content-panel,
.download-card,
.accordion-card,
.profile-banner,
.timeline-row,
.team-card {
    border-radius: var(--phml-radius-sm);
    background: var(--phml-surface-strong);
    border: 1px solid var(--phml-border);
    box-shadow: 0 14px 35px rgba(17, 32, 61, 0.08);
}

.feature-card {
    padding: 1.7rem;
    min-height: 100%;
}

.feature-card.blue {
    background: linear-gradient(180deg, var(--phml-blue), #2f52b1);
    color: #fff;
}

.feature-card.yellow {
    background: linear-gradient(180deg, #fff8a8, var(--phml-yellow));
}

.feature-card.green {
    background: linear-gradient(180deg, #0cbf6b, var(--phml-green));
    color: #fff;
}

.feature-card-head,
.service-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-card-head img,
.service-card-head img {
    width: 48px;
    flex-shrink: 0;
}

.feature-card h3,
.service-card h3,
.content-panel h3,
.profile-banner h2,
.timeline-row h3 {
    margin: 0;
    font-size: 1.32rem;
    line-height: 1.12;
}

.content-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
}

.content-image img,
.content-wide-image img {
    width: 100%;
    border-radius: 22px;
}

.numbered-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding-top: 1.1rem;
}

.numbered-item img {
    width: 44px;
    margin-top: 0.2rem;
}

.numbered-item h3 {
    margin: 0 0 0.45rem;
    font-size: 1.35rem;
}

.service-card {
    overflow: hidden;
}

.service-card img.service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-body {
    padding: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--phml-blue);
}

.team-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 280px);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
}

.team-card {
    padding: 1rem;
    text-align: center;
}

.team-card img {
    width: 100%;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.04), rgba(30, 58, 138, 0.08));
}

.team-card h3 {
    margin: 1rem 0 0.25rem;
    font-size: 1.18rem;
    line-height: 1.15;
}

.team-card p {
    margin: 0;
    color: var(--phml-muted);
    font-size: 0.92rem;
}

.profile-banner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--phml-blue), #3659bb);
    color: #fff;
}

.profile-banner p {
    color: rgba(255, 255, 255, 0.8);
}

.timeline-stack {
    display: grid;
    gap: 1.2rem;
}

.timeline-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.4rem;
}

.timeline-row.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.timeline-copy img {
    width: auto;
    max-width: 140px;
}

.text-link {
    color: var(--phml-blue);
    font-weight: 700;
}

.rich-list,
.rich-text ol {
    margin: 0;
    padding-left: 1.2rem;
}

.rich-list li,
.rich-text li {
    margin-bottom: 0.55rem;
    color: var(--phml-muted);
}

.rich-text p,
.rich-text div,
.rich-text li {
    color: var(--phml-muted);
}

.accordion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.accordion-card {
    padding: 1.2rem 1.25rem;
}

.border-b-2.p-4.mx-4 {
    padding: 1.2rem 1.25rem;
    margin: 0;
    border-radius: var(--phml-radius-sm);
    background: var(--phml-surface-strong);
    border: 1px solid var(--phml-border);
    box-shadow: 0 14px 35px rgba(17, 32, 61, 0.08);
}

.accordion-card .cursor-pointer {
    gap: 1rem;
}

.accordion-card .font-semibold,
.border-b-2.p-4.mx-4 .font-semibold {
    color: var(--phml-ink);
}

.accordion-card [x-show],
.border-b-2.p-4.mx-4 [x-show] {
    color: var(--phml-muted);
}

.map-frame {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--phml-border);
    box-shadow: var(--phml-shadow);
}

.download-card {
    padding: 1.5rem;
    text-align: center;
}

.download-card img {
    width: 64px;
    margin: 0 auto 1rem;
}

.download-card a {
    color: var(--phml-blue);
    font-weight: 700;
}

.footer-shell {
    margin-top: 3rem;
}

.footer-cta {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2.2rem;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(16, 37, 88, 0.94), rgba(30, 58, 138, 0.88)),
        url("/images/footer-bg.png") center/cover no-repeat;
    color: #fff;
    box-shadow: var(--phml-shadow);
}

.footer-cta-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1.02;
    text-transform: uppercase;
}

.footer-cta-copy p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-cta-media {
    display: flex;
    justify-content: flex-end;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 1.4rem;
    padding: 2rem 0 2.5rem;
}

.footer-brand,
.footer-column {
    padding: 1.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--phml-border);
}

.footer-logo {
    width: 94px;
    margin-bottom: 1rem;
}

.footer-column h3 {
    margin: 0 0 1rem;
    color: var(--phml-blue);
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li + li {
    margin-top: 0.7rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.footer-contact-item + .footer-contact-item {
    margin-top: 1rem;
}

.footer-contact-item img {
    width: 28px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact-item div {
    display: grid;
    gap: 0.2rem;
}

.footer-bottom {
    background: linear-gradient(90deg, var(--phml-blue-deep), var(--phml-blue));
    color: #fff;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    font-size: 0.83rem;
}

.phml-bg-blue {
    background-color: var(--phml-blue);
}

.phml-bg-yellow {
    background-color: var(--phml-yellow);
}

.phml-bg-green {
    background-color: var(--phml-green);
}

.phml-text-blue {
    color: var(--phml-blue);
}

.phml-bg-gray {
    background-color: var(--phml-gray);
}

.poppins-semibold {
    font-weight: 600;
}

.poppins-bold {
    font-weight: 700;
}

@media (max-width: 1080px) {
    .nav-links-shell,
    .topbar {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .home-hero,
    .profile-banner,
    .timeline-row,
    .timeline-row.reverse,
    .footer-cta,
    .footer-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .service-grid,
    .accordion-grid,
    .download-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .site-container,
    .page-hero,
    .home-hero,
    .section-block {
        width: min(100% - 1rem, 1180px);
    }

    .page-hero,
    .home-hero {
        padding: 2rem 1.25rem;
        border-radius: 28px;
    }

    .hero-panel-card {
        position: static;
        margin-top: 1rem;
        max-width: none;
    }

    .feature-grid,
    .service-grid,
    .accordion-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
