body {
    background: #f7f6f3;
    -webkit-font-smoothing: antialiased;
}

.page-pt {
    padding-top: 72px;
}

/* ══════════════════════════════════════════
           SITE NAV — fully self-contained
           ══════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: #1a0f3c;
    border-bottom: 1px solid rgba(19, 220, 19, 0.08);
    transition: box-shadow .3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .18s, color .18s;
    white-space: nowrap;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.nav-trigger:hover,
.nav-item:hover>.nav-trigger {
    background: rgba(255, 255, 255, .09);
    color: #fff;
}

.nav-trigger.active {
    color: #e63975;
    font-weight: 600;
}

.nav-trigger .chev {
    font-size: .57rem;
    opacity: .5;
    transition: transform .2s;
}

.nav-item:hover>.nav-trigger .chev {
    transform: rotate(180deg);
    opacity: .9;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-ghost-nav {
    text-decoration: none;
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, .22);
    transition: all .2s;
}

.btn-ghost-nav:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
}

.btn-pill-nav {
    text-decoration: none;
    color: #1a0f3c;
    font-size: .875rem;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 50px;
    background: #fff;
    transition: all .25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.btn-pill-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    transition-delay: 0.12s;
    z-index: 600;
    min-width: 220px;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-item:hover>.nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.nav-dropdown.wide {
    min-width: 720px;
    padding: 22px 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.nav-dropdown.wide2 {
    min-width: 480px;
    padding: 18px 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.ndp-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s;
}

.ndp-item:hover {
    background: #f0fdf4;
}

.ndp-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}

.ndp-name {
    font-size: .84rem;
    font-weight: 700;
    color: #0d1a0f;
    margin-bottom: 1px;
}

.ndp-desc {
    font-size: .73rem;
    color: #6b7280;
    line-height: 1.35;
}

.ndp-simple a {
    display: block;
    padding: 9px 14px;
    font-size: .84rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: all .15s;
}

.ndp-simple a:hover {
    background: #f0fdf4;
    color: #16a34a;
    font-weight: 600;
}

.ndp-label {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9ca3af;
    padding: 4px 14px 8px;
    display: block;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

@media (max-width: 1100px) {
    .nav-dropdown.wide {
        grid-template-columns: 1fr 1fr;
        min-width: 460px;
    }
}

@media (max-width: 900px) {
    .site-nav {
        padding: 0 20px;
        height: 64px;
    }

    .nav-menu {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}


/* ── Responsive section padding ── */
@media (max-width: 1024px) {

    .section-white,
    .section-light,
    .section-teal,
    .section-dark {
        padding: 100px 0;
    }

    .s-h2 {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {

    .section-white,
    .section-light,
    .section-teal,
    .section-dark {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {

    .section-white,
    .section-light,
    .section-teal,
    .section-dark {
        padding: 56px 0;
    }
}