/* Start custom CSS *//* ============================================
   NONPROFIT HUB MASTER PAGE - VERSION 2
   Clean, modern, professional design
   White background with gold accents
   Prefix: np-hub- for future global conversion
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* CSS Custom Properties */
.np-hub {
    --np-hub-white: #FFFFFF;
    --np-hub-off-white: #FAFAFA;
    --np-hub-cream: #F5F3EF;
    --np-hub-black: #1A1A1A;
    --np-hub-charcoal: #2D2D2D;
    --np-hub-gray-dark: #4A4A4A;
    --np-hub-gray: #6B6B6B;
    --np-hub-gray-light: #9A9A9A;
    --np-hub-gray-muted: #E5E5E5;
    --np-hub-gold: #C6A052;
    --np-hub-gold-dark: #A8863D;
    --np-hub-gold-light: #D4B76A;
    --np-hub-font-heading: 'Playfair Display', Georgia, serif;
    --np-hub-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --np-hub-max-width: 1280px;
    --np-hub-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Reset */
.np-hub {
    background-color: var(--np-hub-white);
    color: var(--np-hub-charcoal);
    font-family: var(--np-hub-font-body);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.np-hub * {
    box-sizing: border-box;
}

.np-hub-container {
    max-width: var(--np-hub-max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* Typography */
.np-hub h1,
.np-hub h2,
.np-hub h3 {
    font-family: var(--np-hub-font-heading);
    color: var(--np-hub-black);
    line-height: 1.15;
    margin: 0;
    font-weight: 500;
}

.np-hub h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

.np-hub h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    letter-spacing: -0.01em;
}

.np-hub h3 {
    font-size: 1.125rem;
    font-family: var(--np-hub-font-body);
    font-weight: 600;
    color: var(--np-hub-charcoal);
}

.np-hub p {
    margin: 0 0 1rem 0;
    color: var(--np-hub-gray);
}

.np-hub a {
    color: var(--np-hub-gold-dark);
    text-decoration: none;
    transition: color var(--np-hub-transition);
}

.np-hub a:hover {
    color: var(--np-hub-gold);
}

/* ============================================
   HERO SECTION - 100vh
   ============================================ */

.np-hub-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--np-hub-white);
    position: relative;
    overflow: hidden;
}

.np-hub-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 8vw, 6rem);
    padding-right: clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 2;
}

.np-hub-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--np-hub-gold-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.np-hub-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--np-hub-gold);
}

.np-hub-hero h1 {
    margin-bottom: 1.5rem;
}

.np-hub-hero-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--np-hub-gray);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.np-hub-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--np-hub-black);
    color: var(--np-hub-white);
    font-family: var(--np-hub-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 1.125rem 2rem;
    border-radius: 4px;
    transition: all var(--np-hub-transition);
    text-decoration: none;
    width: fit-content;
}

.np-hub-btn-primary:hover {
    background: var(--np-hub-charcoal);
    color: var(--np-hub-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.np-hub-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--np-hub-gray-muted);
}

.np-hub-trust-badges span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--np-hub-gray-light);
    letter-spacing: 0.02em;
}

.np-hub-hero-image {
    position: relative;
    background: var(--np-hub-cream);
    overflow: hidden;
}

.np-hub-hero-image-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.np-hub-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.np-hub-hero-accent {
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: var(--np-hub-gold);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.np-hub-intro {
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--np-hub-off-white);
    border-top: 1px solid var(--np-hub-gray-muted);
    border-bottom: 1px solid var(--np-hub-gray-muted);
}

.np-hub-intro-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.9;
    color: var(--np-hub-gray-dark);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.np-hub-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.np-hub-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--np-hub-gold-dark);
    margin-bottom: 1rem;
}

.np-hub-section-header h2 {
    margin-bottom: 1rem;
}

.np-hub-section-header p {
    font-size: 1.0625rem;
    color: var(--np-hub-gray);
}

/* ============================================
   SERVICES GRID
   ============================================ */

.np-hub-services {
    padding: clamp(5rem, 12vw, 8rem) 0;
    background: var(--np-hub-white);
}

.np-hub-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.np-hub-service-card {
    background: var(--np-hub-white);
    border: 1px solid var(--np-hub-gray-muted);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all var(--np-hub-transition);
    position: relative;
}

.np-hub-service-card:hover {
    border-color: var(--np-hub-gold-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.np-hub-service-featured {
    border-color: var(--np-hub-gold);
    background: linear-gradient(180deg, rgba(198, 160, 82, 0.03) 0%, var(--np-hub-white) 100%);
}

.np-hub-featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--np-hub-gold);
    color: var(--np-hub-white);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 3px;
}

.np-hub-service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--np-hub-gold);
}

.np-hub-service-icon svg {
    width: 100%;
    height: 100%;
}

.np-hub-service-card h2 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.np-hub-service-card > p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.np-hub-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    border-top: 1px solid var(--np-hub-gray-muted);
    padding-top: 1.5rem;
}

.np-hub-service-list li {
    font-size: 0.875rem;
    color: var(--np-hub-gray);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.np-hub-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--np-hub-gold);
    border-radius: 50%;
}

.np-hub-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--np-hub-gold-dark);
    transition: all var(--np-hub-transition);
}

.np-hub-link:hover {
    color: var(--np-hub-gold);
    gap: 0.25rem;
}

.np-hub-link-disabled {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--np-hub-gray-light);
    cursor: default;
}

.np-hub-link-disabled:hover {
    color: var(--np-hub-gray-light);
}

/* ============================================
   STAGES SECTION
   ============================================ */

.np-hub-stages {
    padding: clamp(5rem, 12vw, 8rem) 0;
    background: var(--np-hub-cream);
}

.np-hub-stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.np-hub-stage-card {
    background: var(--np-hub-white);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.np-hub-stage-number {
    font-family: var(--np-hub-font-heading);
    font-size: 4rem;
    font-weight: 500;
    color: var(--np-hub-cream);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.np-hub-stage-card h2 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.np-hub-stage-card > p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.np-hub-stage-card h3 {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--np-hub-gold-dark);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--np-hub-gray-muted);
}

.np-hub-stage-card h3 + p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.np-hub-faq {
    padding: clamp(5rem, 12vw, 8rem) 0;
    background: var(--np-hub-white);
}

.np-hub-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.np-hub-faq-item {
    padding: 2rem;
    background: var(--np-hub-off-white);
    border-radius: 6px;
    transition: all var(--np-hub-transition);
}

.np-hub-faq-item:hover {
    background: var(--np-hub-cream);
}

.np-hub-faq-item h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    color: var(--np-hub-black);
}

.np-hub-faq-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.np-hub-cta {
    padding: clamp(5rem, 12vw, 8rem) 0;
    background: var(--np-hub-black);
}

.np-hub-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.np-hub-cta-content .np-hub-label {
    color: var(--np-hub-gold-light);
}

.np-hub-cta-content h2 {
    color: var(--np-hub-white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
}

.np-hub-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.np-hub-cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.np-hub-cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    padding: 0.5rem 0;
}

.np-hub-cta-benefits svg {
    width: 20px;
    height: 20px;
    color: var(--np-hub-gold);
    flex-shrink: 0;
}

.np-hub-cta-form {
    background: var(--np-hub-white);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1100px) {
    .np-hub-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .np-hub-stages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .np-hub-stage-card {
        padding: 2.5rem;
    }
}

@media (max-width: 968px) {
    .np-hub-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .np-hub-hero-content {
        padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 5vw, 3rem);
        order: 2;
    }

    .np-hub-hero-image {
        height: 50vh;
        min-height: 350px;
        order: 1;
    }

    .np-hub-cta-grid {
        grid-template-columns: 1fr;
    }

    .np-hub-cta-content {
        text-align: center;
    }

    .np-hub-cta-benefits {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .np-hub-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .np-hub {
        font-size: 16px;
    }

    .np-hub-services-grid {
        grid-template-columns: 1fr;
    }

    .np-hub-service-card {
        padding: 2rem;
    }

    .np-hub-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .np-hub-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .np-hub-stage-number {
        font-size: 3rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .np-hub,
    .np-hub * {
        transition: none !important;
        animation: none !important;
    }
}

.np-hub a:focus,
.np-hub-btn-primary:focus {
    outline: 2px solid var(--np-hub-gold);
    outline-offset: 3px;
}

.np-hub-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}/* End custom CSS */