
.nx-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px 80px;
}



.nx-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    gap: 3vw;
    align-items: center;
    padding: 60px 0 40px;
}

.nx-hero-kicker {
    text-transform: uppercase;
    color: #3E7BFA;
    letter-spacing: 0.14em;
    font-size: 12px;
    margin-bottom: 10px;
}

.nx-hero h1 {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0F172A;
}

.nx-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    max-width: 520px;
    margin-bottom: 24px;
}

.nx-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nx-cta-big {
    padding: 0.8rem 1.8rem;
}

.nx-link-secondary {
    font-size: 14px;
    color: #3E7BFA;
    text-decoration: none;
}

.nx-link-secondary:hover {
    text-decoration: underline;
}

.nx-hero-side {
    display: flex;
    justify-content: flex-end;
}

.nx-hero-card {
    background: #0F1A3A;
    color: #E5E7EB;
    padding: 20px 24px;
    border-radius: 16px;
    max-width: 320px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
}

.nx-hero-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.nx-hero-card p {
    font-size: 14px;
    margin-bottom: 12px;
}

.nx-hero-card ul {
    list-style: none;
}

.nx-hero-card li {
    font-size: 13px;
    margin-bottom: 4px;
}


.nx-section {
    padding: 48px 0;
}

.nx-section-alt {
    background: #F9FAFB;
    margin: 40px -16px;
    padding: 48px 16px;
    border-radius: 24px;
}

.nx-section-header {
    max-width: 640px;
    margin-bottom: 32px;
}

.nx-section-header h2 {
    font-size: clamp(24px, 2.2vw, 30px);
    margin-bottom: 8px;
    color: #0F172A;
}

.nx-section-header p {
    font-size: 15px;
    color: #4B5563;
}


.nx-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.nx-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.nx-card,
.nx-card-mini {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 20px 18px;
}

.nx-card h3,
.nx-card-mini h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #111827;
}

.nx-card p,
.nx-card-mini p {
    font-size: 14px;
    color: #4B5563;
}


.nx-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.nx-process-step {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 18px 16px;
}

.nx-step-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 6px;
}


.nx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nx-tags span {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #D1D5DB;
    background: #FFFFFF;
    color: #374151;
}


.nx-final-cta {
    text-align: center;
    padding: 64px 0 32px;
}

.nx-final-cta-inner {
    max-width: 520px;
    margin: 0 auto;
}

.nx-final-cta h2 {
    font-size: clamp(22px, 2.4vw, 30px);
    margin-bottom: 10px;
}

.nx-final-cta p {
    font-size: 15px;
    color: #4B5563;
    margin-bottom: 20px;
}

.nx-who .nx-section-header {
    margin-bottom: 22px;
}

.nx-who-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 18px;
}

.nx-who-item {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 20px 18px;
}

.nx-who-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #111827;
}

.nx-who-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #4B5563;
}

.nx-who-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nx-who-tags span {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #D1D5DB;
    background: #FFFFFF;
    color: #374151;
}

.nx-operating .nx-section-header {
    margin-bottom: 24px;
}

.nx-operating .nx-card h3 {
    position: relative;
    padding-left: 12px;
}

.nx-operating .nx-card h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    border-radius: 999px;
    background: #3E7BFA;
}